mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Initial Implementation of the Taml, Asset and Modules systems.
Only has example and shape assets currently.
This commit is contained in:
parent
2044b2691e
commit
7a3b40a86d
123 changed files with 30435 additions and 181 deletions
|
|
@ -168,29 +168,6 @@ void TiXmlBase::ConvertUTF32ToUTF8( unsigned long input, char* output, int* leng
|
|||
}
|
||||
|
||||
|
||||
class TiXmlParsingData
|
||||
{
|
||||
friend class TiXmlDocument;
|
||||
public:
|
||||
void Stamp( const char* now, TiXmlEncoding encoding );
|
||||
|
||||
const TiXmlCursor& Cursor() const { return cursor; }
|
||||
|
||||
private:
|
||||
// Only used by the document!
|
||||
TiXmlParsingData( const char* start, int _tabsize, int row, int col )
|
||||
{
|
||||
assert( start );
|
||||
stamp = start;
|
||||
tabsize = _tabsize;
|
||||
cursor.row = row;
|
||||
cursor.col = col;
|
||||
}
|
||||
|
||||
TiXmlCursor cursor;
|
||||
const char* stamp;
|
||||
int tabsize;
|
||||
};
|
||||
|
||||
|
||||
void TiXmlParsingData::Stamp( const char* now, TiXmlEncoding encoding )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue