aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/pet
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-05 12:14:52 -0500
committerPaul Gilbert2016-03-05 12:14:52 -0500
commit03d3d5b539500a77c894ef4479bbe14e1b392fa3 (patch)
tree8f0427662be29ea1c6fc0dc8945a111f348ec07f /engines/titanic/game/pet
parent7e966dbc5e9285da69a55312a81ff280845752ea (diff)
downloadscummvm-rg350-03d3d5b539500a77c894ef4479bbe14e1b392fa3.tar.gz
scummvm-rg350-03d3d5b539500a77c894ef4479bbe14e1b392fa3.tar.bz2
scummvm-rg350-03d3d5b539500a77c894ef4479bbe14e1b392fa3.zip
TITANIC: Implemented remaining CPetControl classes loading
Diffstat (limited to 'engines/titanic/game/pet')
-rw-r--r--engines/titanic/game/pet/pet_val.cpp28
-rw-r--r--engines/titanic/game/pet/pet_val.h41
2 files changed, 0 insertions, 69 deletions
diff --git a/engines/titanic/game/pet/pet_val.cpp b/engines/titanic/game/pet/pet_val.cpp
deleted file mode 100644
index b978a8b724..0000000000
--- a/engines/titanic/game/pet/pet_val.cpp
+++ /dev/null
@@ -1,28 +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/pet/pet_val.h"
-
-namespace Titanic {
-
-
-} // End of namespace Titanic
diff --git a/engines/titanic/game/pet/pet_val.h b/engines/titanic/game/pet/pet_val.h
deleted file mode 100644
index f5cae8222d..0000000000
--- a/engines/titanic/game/pet/pet_val.h
+++ /dev/null
@@ -1,41 +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_PET_VAL_H
-#define TITANIC_PET_VAL_H
-
-#include "titanic/game/pet/pet_val_base.h"
-
-namespace Titanic {
-
-class CPetVal: public CPetValBase {
-private:
- int _field18;
- int _field1C;
- int _field20;
-public:
- CPetVal() : CPetValBase(), _field18(0), _field1C(0), _field20(0) {}
-};
-
-} // End of namespace Titanic
-
-#endif /* TITANIC_PET_VAL_H */