Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

59 строки
1.1 KiB

  1. //
  2. // Lol Engine
  3. //
  4. // Copyright: (c) 2010-2011 Sam Hocevar <sam@hocevar.net>
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the Do What The Fuck You Want To
  7. // Public License, Version 2, as published by Sam Hocevar. See
  8. // http://sam.zoy.org/projects/COPYING.WTFPL for more details.
  9. //
  10. //
  11. // The main header
  12. // ---------------
  13. //
  14. #if !defined __LOL_CORE_H__
  15. #define __LOL_CORE_H__
  16. // Base types
  17. #include "matrix.h"
  18. #include "numeric.h"
  19. #include "timer.h"
  20. // Static classes
  21. #include "log.h"
  22. #include "platform.h"
  23. #include "video.h"
  24. #include "audio.h"
  25. #include "scene.h"
  26. #include "input.h"
  27. #include "profiler.h"
  28. // Entities
  29. #include "entity.h"
  30. #include "emitter.h"
  31. #include "font.h"
  32. #include "sample.h"
  33. #include "text.h"
  34. #include "tileset.h"
  35. #include "worldentity.h"
  36. #include "world.h"
  37. // Other objects
  38. #include "hash.h"
  39. #include "dict.h"
  40. #include "map.h"
  41. #include "layer.h"
  42. #include "shader/shader.h"
  43. #include "image.h"
  44. // Managers
  45. #include "ticker.h"
  46. #include "forge.h"
  47. #include "tiler.h"
  48. #include "sampler.h"
  49. #endif // __LOL_CORE_H__