From caf65b91a27b583dc439c4e71561b818878d83d3 Mon Sep 17 00:00:00 2001 From: Colin Noga Date: Mon, 25 Jun 2012 00:03:38 -0500 Subject: Worked more on bonus room - light is broken, and the delete functions are probably broken --- include/game.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'include') 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; }; -- cgit v1.2.3