aboutsummaryrefslogtreecommitdiff
path: root/queen/graphics.h
diff options
context:
space:
mode:
Diffstat (limited to 'queen/graphics.h')
-rw-r--r--queen/graphics.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/queen/graphics.h b/queen/graphics.h
index b0c8369119..312246b77c 100644
--- a/queen/graphics.h
+++ b/queen/graphics.h
@@ -23,8 +23,8 @@
#define QUEENGRAPHICS_H
#include "common/str.h"
-#include "queen/defs.h"
#include "common/util.h"
+#include "queen/defs.h"
#include "queen/structs.h"
namespace Queen {
@@ -173,18 +173,6 @@ private:
};
-struct BamDataObj {
- int16 x, y;
- int16 frame;
-};
-
-struct BamDataBlock {
- BamDataObj obj1; // truck / Frank
- BamDataObj obj2; // Rico / robot
- BamDataObj fx;
- int16 sfx;
-};
-
class BamScene {
public:
@@ -210,6 +198,18 @@ public:
private:
+ struct BamDataObj {
+ int16 x, y;
+ int16 frame;
+ };
+
+ struct BamDataBlock {
+ BamDataObj obj1; // truck / Frank
+ BamDataObj obj2; // Rico / robot
+ BamDataObj fx;
+ int16 sfx;
+ };
+
BobSlot *_obj1;
BobSlot *_obj2;
BobSlot *_objfx;