My Project
XFileStaticModelParser.h
1 #pragma once
2 #include "XFileParser.h"
3 
4 namespace ParaEngine
5 {
6  struct ParaXRefObject;
7 
10  {
11  public:
15  XFileStaticModelParser(const char* pBuffer, int32 nSize);
17  public:
18  XFile::Scene* ParseParaXStaticModel();
19 
20  bool ParseXRefSection();
21 
22  bool ParseDataObjectXRefObject(ParaXRefObject& xref);
23  };
24 }
Helper structure analogue to aiScene.
Definition: XFileHelper.h:123
different physics engine has different winding order.
Definition: EventBinding.h:32
XFileStaticModelParser(const char *pBuffer, int32 nSize)
Constructor.
Definition: XFileStaticModelParser.cpp:17
The XFileParser reads a XFile either in text or binary form and builds a temporary data structure out...
Definition: XFileParser.h:19
XRef Objects in X and ParaX model.
Definition: ParaXRefObject.h:6
parsing static model: both binary and text format supported
Definition: XFileStaticModelParser.h:9