2023-09-08 17:19:42 +00:00
|
|
|
#pragma once
|
2023-09-09 07:10:31 -05:00
|
|
|
#define VARIANTS float,int,std::string,bool,vf2d
|
2023-09-09 05:38:37 -05:00
|
|
|
#include <string>
|
|
|
|
#define F(attr) GetFloat(attr)
|
|
|
|
#define I(attr) GetInt(attr)
|
|
|
|
#define S(attr) GetString(attr)
|
|
|
|
#define B(attr) GetBool(attr)
|
2023-09-09 07:10:31 -05:00
|
|
|
#define V(attr) GetVf2d(attr)
|
2023-09-08 14:36:31 +00:00
|
|
|
|
2023-09-09 05:38:37 -05:00
|
|
|
enum class Attribute{
|
|
|
|
IFRAME_TIME_UPON_HIT,
|
|
|
|
SHOOT_RING_TIMER,
|
|
|
|
SHOOT_RING_DELAY,
|
|
|
|
SHOOT_RING_COUNTER,
|
|
|
|
SHOOT_RING_RIGHT,
|
2023-09-09 05:51:15 -05:00
|
|
|
SHOOT_RING_OFFSET,
|
2023-09-09 07:10:31 -05:00
|
|
|
PATTERN_REPEAT_COUNT,
|
|
|
|
JUMP_ORIGINAL_LANDING_TIMER,
|
|
|
|
JUMP_LANDING_TIMER,
|
|
|
|
JUMP_TARGET_POS,
|
|
|
|
JUMP_ORIGINAL_POS,
|
|
|
|
RECOVERY_TIME,
|
2023-09-08 17:19:42 +00:00
|
|
|
};
|