diff options
Diffstat (limited to '')
-rwxr-xr-x | include/game.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/game.h b/include/game.h index abfb495..468f4e3 100755 --- a/include/game.h +++ b/include/game.h @@ -1594,15 +1594,16 @@ class StageActorLight { public:
StageActorLight();
- void init(void *allocator,int);
- void update();
- void draw();
- ~StageActorLight();
+
+ virtual void init(void *allocator, int);
+ virtual void update();
+ virtual void draw();
+ virtual ~StageActorLight();
Vec pos;
float size;
- long secondClass;
- long firstClass;
+ u32 secondClass;
+ u32 firstClass;
};
|