Paper Mario DX
Paper Mario (N64) modding
 
Loading...
Searching...
No Matches
star_rod_macros.h
Go to the documentation of this file.
1#ifndef _STAR_ROD_MACROS_H_
2#define _STAR_ROD_MACROS_H_
3// macros used by Star Rod's script generation
4
5#define EVT_MAKE_ITEM_ENTITY(args...) \
6 Call(MakeItemEntity, args)
7
8#define EVT_MAKE_ENTITY(type, args...) \
9 Call(MakeEntity, Ref(Entity_##type), args, MAKE_ENTITY_END)
10
11#define GEN_FLOWER_SPAWN_REGION(args...) \
12 EVT_FLOWER_SPAWN_REGION(args)
13
14#endif