2020-06-02 18:44:34 +02:00
|
|
|
#ifndef MACRO_PRESETS_H
|
|
|
|
#define MACRO_PRESETS_H
|
2019-08-25 06:46:40 +02:00
|
|
|
|
|
|
|
#include "macro_preset_names.h"
|
|
|
|
#include "behavior_data.h"
|
|
|
|
#include "model_ids.h"
|
|
|
|
|
|
|
|
struct MacroPreset
|
|
|
|
{
|
2020-04-03 20:57:26 +02:00
|
|
|
/*0x00*/ const BehaviorScript *behavior;
|
2019-08-25 06:46:40 +02:00
|
|
|
/*0x04*/ s16 model;
|
|
|
|
/*0x06*/ s16 param;
|
|
|
|
};
|
|
|
|
|
2021-06-10 07:35:34 +02:00
|
|
|
extern struct MacroPreset MacroObjectPresets[];
|
2019-08-25 06:46:40 +02:00
|
|
|
|
2020-06-02 18:44:34 +02:00
|
|
|
#endif // MACRO_PRESETS_H
|