Fix Hopper selection crash, add some placeholder enums, add a compaitiblity shim

This commit is contained in:
2022-10-04 23:36:59 -04:00
parent 8ef3bcd352
commit 3b83e527f8
6 changed files with 69 additions and 6 deletions

11
src/include/ToolEnum.h Normal file
View File

@@ -0,0 +1,11 @@
#pragma once
namespace Enum
{
namespace Hopper
{
enum Value {
GameTool = 0, Grab = 1, Clone = 2, Hammer = 3, Slingshot = 4, Rocket = 5, Laser = 6
};
}
}