18 lines
325 B
C
18 lines
325 B
C
#ifndef MACRO_PRESETS_H
|
|
#define MACRO_PRESETS_H
|
|
|
|
#include "macro_preset_names.h"
|
|
#include "behavior_data.h"
|
|
#include "model_ids.h"
|
|
|
|
struct MacroPreset
|
|
{
|
|
/*0x00*/ const BehaviorScript *behavior;
|
|
/*0x04*/ s16 model;
|
|
/*0x06*/ s16 param;
|
|
};
|
|
|
|
extern struct MacroPreset MacroObjectPresets[];
|
|
|
|
#endif // MACRO_PRESETS_H
|