aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/core/drop_target.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-28 10:57:45 -0500
committerPaul Gilbert2016-02-28 10:57:45 -0500
commitdecec97c4b7611c56135cf222544afa9f043c894 (patch)
treef0e00a3fd0e8d13a49628917a136d3e784d44a26 /engines/titanic/core/drop_target.h
parent6cb2a5e81f03ff984a2bc8b214c02f0a3c255952 (diff)
downloadscummvm-rg350-decec97c4b7611c56135cf222544afa9f043c894.tar.gz
scummvm-rg350-decec97c4b7611c56135cf222544afa9f043c894.tar.bz2
scummvm-rg350-decec97c4b7611c56135cf222544afa9f043c894.zip
TITANIC: Implement various parrot classes
Diffstat (limited to 'engines/titanic/core/drop_target.h')
-rw-r--r--engines/titanic/core/drop_target.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/engines/titanic/core/drop_target.h b/engines/titanic/core/drop_target.h
new file mode 100644
index 0000000000..b106623f62
--- /dev/null
+++ b/engines/titanic/core/drop_target.h
@@ -0,0 +1,67 @@
+/* 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_DROP_TARGET_H
+#define TITANIC_DROP_TARGET_H
+
+#include "titanic/core/game_object.h"
+
+namespace Titanic {
+
+class CDropTarget : public CGameObject {
+private:
+ Common::Point _pos1;
+ int _fieldC4;
+ CString _string1;
+ int _fieldD4;
+ CString _string2;
+ int _fieldE4;
+ CString _string3;
+ int _fieldF4;
+ int _fieldF8;
+ int _fieldFC;
+ CString _string4;
+ int _field10C;
+ int _field110;
+ int _field114;
+public:
+ CDropTarget();
+
+ /**
+ * Return the class name
+ */
+ virtual const char *getClassName() const { return "CDropTarget"; }
+
+ /**
+ * Save the data for the class to file
+ */
+ virtual void save(SimpleFile *file, int indent) const;
+
+ /**
+ * Load the data for the class from file
+ */
+ virtual void load(SimpleFile *file);
+};
+
+} // End of namespace Titanic
+
+#endif /* TITANIC_DROP_TARGET_H */