Last change
on this file since 288 was
288,
checked in by sam, 12 years ago
|
Skeleton for the particle emitter class.
|
-
Property svn:keywords set to
Id
|
File size:
951 bytes
|
Line | |
---|
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 | // |
---|
12 | // The main header |
---|
13 | // --------------- |
---|
14 | // |
---|
15 | |
---|
16 | #if !defined __DH_CORE_H__ |
---|
17 | #define __DH_CORE_H__ |
---|
18 | |
---|
19 | // Base types |
---|
20 | #include "matrix.h" |
---|
21 | #include "timer.h" |
---|
22 | |
---|
23 | // Static classes |
---|
24 | #include "video.h" |
---|
25 | #include "audio.h" |
---|
26 | #include "scene.h" |
---|
27 | #include "input.h" |
---|
28 | #include "profiler.h" |
---|
29 | |
---|
30 | // Entities |
---|
31 | #include "entity.h" |
---|
32 | #include "emitter.h" |
---|
33 | #include "font.h" |
---|
34 | #include "sample.h" |
---|
35 | #include "text.h" |
---|
36 | #include "tileset.h" |
---|
37 | #include "world.h" |
---|
38 | |
---|
39 | // Other objects |
---|
40 | #include "dict.h" |
---|
41 | #include "map.h" |
---|
42 | #include "layer.h" |
---|
43 | |
---|
44 | // Managers |
---|
45 | #include "ticker.h" |
---|
46 | #include "forge.h" |
---|
47 | #include "tiler.h" |
---|
48 | #include "sampler.h" |
---|
49 | |
---|
50 | #endif // __DH_CORE_H__ |
---|
51 | |
---|
Note: See
TracBrowser
for help on using the repository browser.