aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/avalot.h
diff options
context:
space:
mode:
authorStrangerke2013-09-22 22:47:12 +0200
committerStrangerke2013-09-22 22:47:12 +0200
commit61eb94e5c8a7502563d5720a9db71ba1646b49bb (patch)
tree0377375e6516474e548c4921a35bce6162d5bb10 /engines/avalanche/avalot.h
parent061c06c1286ba20b58412e494cf39a40eabb35b6 (diff)
downloadscummvm-rg350-61eb94e5c8a7502563d5720a9db71ba1646b49bb.tar.gz
scummvm-rg350-61eb94e5c8a7502563d5720a9db71ba1646b49bb.tar.bz2
scummvm-rg350-61eb94e5c8a7502563d5720a9db71ba1646b49bb.zip
AVALANCHE: Use struct for consistency in Avalot
Diffstat (limited to 'engines/avalanche/avalot.h')
-rw-r--r--engines/avalanche/avalot.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/avalanche/avalot.h b/engines/avalanche/avalot.h
index efd04ff35a..29433ee831 100644
--- a/engines/avalanche/avalot.h
+++ b/engines/avalanche/avalot.h
@@ -101,8 +101,7 @@ struct MagicType {
uint16 _data; // data for them
};
-class FieldType {
-public:
+struct FieldType {
int16 _x1, _y1, _x2, _y2;
};
@@ -110,8 +109,7 @@ struct ByteField {
byte _x1, _y1, _x2, _y2;
};
-class LineType : public FieldType {
-public:
+struct LineType : public FieldType {
byte _color;
};