sm64coopdx/include/macro_presets.h

18 lines
325 B
C
Raw Normal View History

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;
};
extern struct MacroPreset MacroObjectPresets[];
2019-08-25 06:46:40 +02:00
2020-06-02 18:44:34 +02:00
#endif // MACRO_PRESETS_H