You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

63 rivejä
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 "half.h"
  18. #include "matrix.h"
  19. #include "numeric.h"
  20. #include "timer.h"
  21. // Static classes
  22. #include "log.h"
  23. #include "platform.h"
  24. #include "video.h"
  25. #include "audio.h"
  26. #include "scene.h"
  27. #include "input.h"
  28. #include "profiler.h"
  29. // Entities
  30. #include "entity.h"
  31. #include "worldentity.h"
  32. #include "emitter.h"
  33. #include "font.h"
  34. #include "gradient.h"
  35. #include "sample.h"
  36. #include "sprite.h"
  37. #include "text.h"
  38. #include "tileset.h"
  39. #include "world.h"
  40. // Other objects
  41. #include "hash.h"
  42. #include "dict.h"
  43. #include "map.h"
  44. #include "layer.h"
  45. #include "shader/shader.h"
  46. #include "image/image.h"
  47. // Managers
  48. #include "ticker.h"
  49. #include "forge.h"
  50. #include "tiler.h"
  51. #include "sampler.h"
  52. #endif // __LOL_CORE_H__