diff --git a/CAPI/API/include/API.h b/CAPI/API/include/API.h index d42a89d..27ed99c 100644 --- a/CAPI/API/include/API.h +++ b/CAPI/API/include/API.h @@ -247,6 +247,7 @@ public: std::future MoveUp(int64_t timeInMilliseconds) override; std::future MoveLeft(int64_t timeInMilliseconds) override; std::future MoveDown(int64_t timeInMilliseconds) override; + std::future PickProp(THUAI6::PropType prop) override; std::future UseProp() override; std::future UseSkill() override; diff --git a/CAPI/API/include/structures.h b/CAPI/API/include/structures.h index 69cab94..bdeab2e 100644 --- a/CAPI/API/include/structures.h +++ b/CAPI/API/include/structures.h @@ -87,6 +87,17 @@ namespace THUAI6 ButcherBuffType4 = 4, }; + //人类状态枚举 + enum class HumanState : unsigned char + { + NullHumanState = 0, + Idle = 1, + Fixing = 2, + Dying = 3, + OnChair = 4, + Dead = 5, + }; + // 玩家类 struct Player {