aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/pet_control/pet_rooms_glyphs.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-04-23 22:31:22 -0400
committerPaul Gilbert2016-07-10 16:11:56 -0400
commit73258800cf10f94cee5a9745649f8c5dbb67109c (patch)
treeb932c290395892f367ebc63da6457c7adaa47acb /engines/titanic/pet_control/pet_rooms_glyphs.h
parent730895a9ea4a5f1c2032cb552d9221ad22fb8e5f (diff)
downloadscummvm-rg350-73258800cf10f94cee5a9745649f8c5dbb67109c.tar.gz
scummvm-rg350-73258800cf10f94cee5a9745649f8c5dbb67109c.tar.bz2
scummvm-rg350-73258800cf10f94cee5a9745649f8c5dbb67109c.zip
TITANIC: Beginnings of CPetRooms
Diffstat (limited to 'engines/titanic/pet_control/pet_rooms_glyphs.h')
-rw-r--r--engines/titanic/pet_control/pet_rooms_glyphs.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/engines/titanic/pet_control/pet_rooms_glyphs.h b/engines/titanic/pet_control/pet_rooms_glyphs.h
new file mode 100644
index 0000000000..ee79917b57
--- /dev/null
+++ b/engines/titanic/pet_control/pet_rooms_glyphs.h
@@ -0,0 +1,56 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef TITANIC_PET_ROOMS_GLYPHS_H
+#define TITANIC_PET_ROOMS_GLYPHS_H
+
+#include "titanic/pet_control/pet_glyphs.h"
+
+namespace Titanic {
+
+class CPetRoomsGlyph : public CPetGlyph {
+protected:
+ int _field34;
+ int _field38;
+ int _field3C;
+ int _field40;
+ int _field44;
+ int _field48;
+ int _field4C;
+ int _field50;
+ int _field54;
+ int _field58;
+ int _field5C;
+public:
+ CPetRoomsGlyph();
+
+ void set34(int val);
+
+ void set38(int val);
+};
+
+class CPetRoomsGlyphs : public CPetGlyphs {
+};
+
+} // End of namespace Titanic
+
+#endif /* TITANIC_PET_ROOMS_GLYPHS_H */