CSemiLodHandler.h 215 B

12345678
  1. #include "CSemiDefHandler.h"
  2. class CSemiLodHandler
  3. {
  4. public:
  5. std::string ourName; // name of our lod
  6. void openLod(std::string path);
  7. CSemiDefHandler * giveDef(std::string name); //loads def from our lod
  8. };