aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/npcs/parrot_succubus.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-14 23:07:24 -0400
committerPaul Gilbert2016-08-14 23:07:24 -0400
commitcbf5fb0beee0e0157c2d9a8e4cac2d35106e5c34 (patch)
tree29784298750a69a6d3e583894feda5c02dfea8cd /engines/titanic/npcs/parrot_succubus.cpp
parentb128ba1ae925c3695e408812c833f0e7ca7b884b (diff)
downloadscummvm-rg350-cbf5fb0beee0e0157c2d9a8e4cac2d35106e5c34.tar.gz
scummvm-rg350-cbf5fb0beee0e0157c2d9a8e4cac2d35106e5c34.tar.bz2
scummvm-rg350-cbf5fb0beee0e0157c2d9a8e4cac2d35106e5c34.zip
TITANIC: Move BilgeSuccUBus & ParrotSuccUBus to npcs/ folder
Diffstat (limited to 'engines/titanic/npcs/parrot_succubus.cpp')
-rw-r--r--engines/titanic/npcs/parrot_succubus.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/engines/titanic/npcs/parrot_succubus.cpp b/engines/titanic/npcs/parrot_succubus.cpp
new file mode 100644
index 0000000000..49c4afa1f1
--- /dev/null
+++ b/engines/titanic/npcs/parrot_succubus.cpp
@@ -0,0 +1,49 @@
+/* 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.
+ *
+ */
+
+#include "titanic/npcs/parrot_succubus.h"
+
+namespace Titanic {
+
+CParrotSuccUBus::CParrotSuccUBus() : CSuccUBus(), _field1DC(0),
+ _field1EC(0), _field1F0(376), _field1F4(393) {
+}
+
+void CParrotSuccUBus::save(SimpleFile *file, int indent) {
+ file->writeNumberLine(1, indent);
+ file->writeNumberLine(_field1DC, indent);
+ file->writeQuotedLine(_string3, indent);
+ file->writeNumberLine(_field1EC, indent);
+
+ CSuccUBus::save(file, indent);
+}
+
+void CParrotSuccUBus::load(SimpleFile *file) {
+ file->readNumber();
+ _field1DC = file->readNumber();
+ _string3 = file->readString();
+ _field1EC = file->readNumber();
+
+ CSuccUBus::load(file);
+}
+
+} // End of namespace Titanic