This commit is contained in:
aozhiwei 2021-06-18 16:03:26 +08:00
parent d0a59e06d3
commit 0c244156f0
2 changed files with 2 additions and 1 deletions

View File

@ -337,6 +337,7 @@ enum ObstacleType_e
kObstacleHideHouse = 6,
kObstacleGully = 7,
kObstacleAirDropBox = 8,
kObstacleOilBucket = 9,
};
enum OptResult

View File

@ -24,6 +24,7 @@ class Loot : public RoomEntity
a8::Vec2 born_pos;
bool show_anim = false;
long long create_frame_no = 0;
int dummy_thing_uniid = 0;
virtual ~Loot() override;
virtual void Initialize() override;
@ -36,4 +37,3 @@ protected:
friend class EntityFactory;
};