aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/parrot
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/game/parrot
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/game/parrot')
-rw-r--r--engines/titanic/game/parrot/parrot_succubus.cpp49
-rw-r--r--engines/titanic/game/parrot/parrot_succubus.h54
2 files changed, 0 insertions, 103 deletions
diff --git a/engines/titanic/game/parrot/parrot_succubus.cpp b/engines/titanic/game/parrot/parrot_succubus.cpp
deleted file mode 100644
index 02a29b748e..0000000000
--- a/engines/titanic/game/parrot/parrot_succubus.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/* 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/game/parrot/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
diff --git a/engines/titanic/game/parrot/parrot_succubus.h b/engines/titanic/game/parrot/parrot_succubus.h
deleted file mode 100644
index 6f5d9e602a..0000000000
--- a/engines/titanic/game/parrot/parrot_succubus.h
+++ /dev/null
@@ -1,54 +0,0 @@
-/* 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_PARROT_SUCCUBUS_H
-#define TITANIC_PARROT_SUCCUBUS_H
-
-#include "titanic/npcs/succubus.h"
-
-namespace Titanic {
-
-class CParrotSuccUBus : public CSuccUBus {
-public:
- int _field1DC;
- CString _string3;
- int _field1EC;
- int _field1F0;
- int _field1F4;
-public:
- CLASSDEF;
- CParrotSuccUBus();
-
- /**
- * Save the data for the class to file
- */
- virtual void save(SimpleFile *file, int indent);
-
- /**
- * Load the data for the class from file
- */
- virtual void load(SimpleFile *file);
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_PARROT_SUCCUBUS_H */