mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
Merge remote-tracking branch 'origin/style-cleanup' into development
Conflicts: Engine/source/T3D/tsStatic.cpp Engine/source/console/compiledEval.cpp Engine/source/ts/tsMesh.cpp Engine/source/ts/tsShape.cpp
This commit is contained in:
commit
33fcc59543
62 changed files with 3380 additions and 3381 deletions
|
|
@ -61,28 +61,28 @@ public:
|
|||
CodeBlock();
|
||||
~CodeBlock();
|
||||
|
||||
StringTableEntry name;
|
||||
StringTableEntry fullPath;
|
||||
StringTableEntry modPath;
|
||||
StringTableEntry mName;
|
||||
StringTableEntry mFullPath;
|
||||
StringTableEntry mModPath;
|
||||
|
||||
char *globalStrings;
|
||||
char *functionStrings;
|
||||
char *mGlobalStrings;
|
||||
char *mFunctionStrings;
|
||||
|
||||
U32 functionStringsMaxLen;
|
||||
U32 globalStringsMaxLen;
|
||||
U32 mFunctionStringsMaxLen;
|
||||
U32 mGlobalStringsMaxLen;
|
||||
|
||||
F64 *globalFloats;
|
||||
F64 *functionFloats;
|
||||
F64 *mGlobalFloats;
|
||||
F64 *mFunctionFloats;
|
||||
|
||||
U32 codeSize;
|
||||
U32 *code;
|
||||
U32 mCodeSize;
|
||||
U32 *mCode;
|
||||
|
||||
U32 refCount;
|
||||
U32 lineBreakPairCount;
|
||||
U32 *lineBreakPairs;
|
||||
U32 breakListSize;
|
||||
U32 *breakList;
|
||||
CodeBlock *nextFile;
|
||||
U32 mRefCount;
|
||||
U32 mLineBreakPairCount;
|
||||
U32 *mLineBreakPairs;
|
||||
U32 mBreakListSize;
|
||||
U32 *mBreakList;
|
||||
CodeBlock *mNextFile;
|
||||
|
||||
void addToCodeList();
|
||||
void removeFromCodeList();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue