Enable string & float user_ properties in UDMF things

This commit is contained in:
Jason Francis 2018-03-19 10:39:50 -04:00 committed by Christoph Oelckers
commit 4494b18e8a
4 changed files with 47 additions and 55 deletions

View file

@ -200,6 +200,7 @@ public:
bool isStruct() const { return TypeTableType == NAME_Struct; }
bool isClass() const { return TypeTableType == NAME_Object; }
bool isPrototype() const { return TypeTableType == NAME_Prototype; }
bool isString() const { return TypeTableType == NAME_String; }
PContainerType *toContainer() { return isContainer() ? (PContainerType*)this : nullptr; }
PPointer *toPointer() { return isPointer() ? (PPointer*)this : nullptr; }