diff options
Diffstat (limited to 'tools/DSGmaker/InstaEntityDSGList.hpp')
-rw-r--r-- | tools/DSGmaker/InstaEntityDSGList.hpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/DSGmaker/InstaEntityDSGList.hpp b/tools/DSGmaker/InstaEntityDSGList.hpp new file mode 100644 index 0000000..033e8a9 --- /dev/null +++ b/tools/DSGmaker/InstaEntityDSGList.hpp @@ -0,0 +1,20 @@ +#ifndef INSTAENTITYDSGLIST_H +#define INSTAENTITYDSGLIST_H + +//custom list class,stores the address of InstaEntityDSG's in a array,that i create in DSGmaker + +class tlInstaEntityDSGChunk ; + +class InstaEntityDSGList +{ + public: + InstaEntityDSGList(); + virtual ~InstaEntityDSGList(); + int AddInstaEntity(tlInstaEntityDSGChunk* p_insta); + tlInstaEntityDSGChunk* GetInstaEntity(const char* name); + + private: + tlInstaEntityDSGChunk** mp_list; + unsigned int mindex; +}; +#endif //end of file
\ No newline at end of file |