lithtech.h 474 B

1234567891011121314151617181920212223242526272829
  1. // Base LithTech header file
  2. #ifndef __LITHTECH_H__
  3. #define __LITHTECH_H__
  4. // Engine define
  5. #ifndef _LITHTECH_
  6. #define _LITHTECH_
  7. #endif
  8. // Engine version identifier.
  9. #ifndef _LITHTECH2
  10. #define _LITHTECH2
  11. #endif
  12. // Main includes
  13. #include "ltbasetypes.h"
  14. #include "ltbasedefs.h"
  15. // Interfaces
  16. #include "iltstream.h"
  17. // Backwards compatibility header include
  18. #ifdef LT15_COMPAT
  19. #include "compat/ltcompat.h"
  20. #endif
  21. #endif //__LITHTECH_H__