CSemiLodHandler.h 315 B

12345678910111213
  1. #ifndef CSEMILODHANDLER_H
  2. #define CSEMILODHANDLER_H
  3. #include "CSemiDefHandler.h"
  4. class CSemiLodHandler
  5. {
  6. public:
  7. std::string ourName; // name of our lod
  8. void openLod(std::string path);
  9. CSemiDefHandler * giveDef(std::string name, int dist=1); //loads def from our lod
  10. };
  11. #endif //CSEMILODHANDLER_H