Cleanup: Remove obsolete (Make)EnumPropsT. (#10697)

This was used by the command system to help extract p1/p2 parameters, which no longer happens.
This commit is contained in:
PeterN
2023-04-23 17:46:14 +01:00
committed by GitHub
parent 370a8d77a4
commit 9910240f0e
19 changed files with 0 additions and 90 deletions

View File

@@ -38,9 +38,6 @@ enum StoryPageElementType : byte {
INVALID_SPET = 0xFF,
};
/** Define basic enum properties */
template <> struct EnumPropsT<StoryPageElementType> : MakeEnumPropsT<StoryPageElementType, byte, SPET_TEXT, SPET_END, INVALID_SPET, 8> {};
/** Flags available for buttons */
enum StoryPageButtonFlags : byte {
SPBF_NONE = 0,
@@ -110,9 +107,6 @@ enum StoryPageButtonCursor : byte {
INVALID_SPBC = 0xFF
};
/** Define basic enum properties */
template <> struct EnumPropsT<StoryPageButtonCursor> : MakeEnumPropsT<StoryPageButtonCursor, byte, SPBC_MOUSE, SPBC_END, INVALID_SPBC, 8> {};
/**
* Checks if a StoryPageButtonCursor value is valid.
*