This commit is contained in:
Aaron Kimbre
2024-06-05 02:39:36 -05:00
parent af651f0d63
commit 5e3c869141
5 changed files with 91 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
#ifndef __EDELETIONRESTRICTIONSCHECKTYPE__H__
#define __EDELETIONRESTRICTIONSCHECKTYPE__H__
#include <cstdint>
enum class eDeletionRestrictionsCheckType : uint32_t {
INCLUDE_LOTS,
EXCLUDE_LOTS,
ANY_OF_THESE,
ALL_OF_THESE,
ZONE,
RESTRICTED,
MAX
};
#endif //!__EDELETIONRESTRICTIONSCHECKTYPE__H__