Added parsing of ui, play, allowui and const qualifiers

This commit is contained in:
ZZYZX 2017-02-17 17:58:16 +02:00
commit 4fe9c7d8c8
10 changed files with 287 additions and 19 deletions

View file

@ -702,6 +702,9 @@ public:
bool Native;
bool Final = false; // cannot be overridden
bool Unsafe = false; // Contains references to class fields that are unsafe for psp and item state calls.
bool ScopeUI = false; // [ZZ] 'ui' method
bool ScopePlay = false; // [ZZ] 'play' method
bool FuncConst = false; // [ZZ] const qualifier for methods - these can be called on readonly
BYTE ImplicitArgs = 0; // either 0 for static, 1 for method or 3 for action
unsigned VirtualIndex = ~0u;
FName Name;