Last change
on this file since 75 was
75,
checked in by sam, 12 years ago
|
Much better resource allocation and release. Scene manager stub.
|
-
Property svn:keywords set to
Id
|
File size:
248 bytes
|
Line | |
---|
1 | |
---|
2 | /* |
---|
3 | * The scene object |
---|
4 | */ |
---|
5 | |
---|
6 | #if !defined __DH_SCENE_H__ |
---|
7 | #define __DH_SCENE_H__ |
---|
8 | |
---|
9 | #include <cstdio> |
---|
10 | #include <stdint.h> |
---|
11 | |
---|
12 | class SceneData; |
---|
13 | |
---|
14 | class Scene |
---|
15 | { |
---|
16 | public: |
---|
17 | Scene(); |
---|
18 | ~Scene(); |
---|
19 | |
---|
20 | private: |
---|
21 | SceneData *data; |
---|
22 | }; |
---|
23 | |
---|
24 | #endif // __DH_SCENE_H__ |
---|
25 | |
---|
Note: See
TracBrowser
for help on using the repository browser.