aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/game/end_game_credits.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-03-01 20:41:07 -0500
committerPaul Gilbert2016-03-01 20:41:07 -0500
commit9ce8e1130cc32c49e31a2160b2f4034f05430b4b (patch)
treeed1c25ade35c6e5449b80918c9377bf55b113199 /engines/titanic/game/end_game_credits.h
parent32d84ed33d88e42bc521b3736b35bacdfa5c13e7 (diff)
downloadscummvm-rg350-9ce8e1130cc32c49e31a2160b2f4034f05430b4b.tar.gz
scummvm-rg350-9ce8e1130cc32c49e31a2160b2f4034f05430b4b.tar.bz2
scummvm-rg350-9ce8e1130cc32c49e31a2160b2f4034f05430b4b.zip
TITANIC: Lots more miscellaneous classes
Diffstat (limited to 'engines/titanic/game/end_game_credits.h')
-rw-r--r--engines/titanic/game/end_game_credits.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/engines/titanic/game/end_game_credits.h b/engines/titanic/game/end_game_credits.h
index c243f9a79c..f8ec6b00a7 100644
--- a/engines/titanic/game/end_game_credits.h
+++ b/engines/titanic/game/end_game_credits.h
@@ -20,19 +20,24 @@
*
*/
-#ifndef TITANIC_END_GAME_SHIP_H
-#define TITANIC_END_GAME_SHIP_H
+#ifndef TITANIC_END_GAME_CREDITS_H
+#define TITANIC_END_GAME_CREDITS_H
#include "titanic/core/game_object.h"
namespace Titanic {
-class CEndGameShip : public CGameObject {
+class CEndGameCredits : public CGameObject {
+private:
+ int _fieldBC;
+ Common::Point _pos1;
public:
+ CEndGameCredits();
+
/**
* Return the class name
*/
- virtual const char *getClassName() const { return "CEndGameShip"; }
+ virtual const char *getClassName() const { return "CEndGameCredits"; }
/**
* Save the data for the class to file
@@ -47,4 +52,4 @@ public:
} // End of namespace Titanic
-#endif /* TITANIC_END_GAME_SHIP_H */
+#endif /* TITANIC_END_GAME_CREDITS_H */