aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/sound/auto_music_player_base.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-02-26 19:11:30 -0500
committerPaul Gilbert2016-02-26 19:11:30 -0500
commitb361f2bf1484a54dd776f1b67cbd15037201348a (patch)
treeac335bd38f7d3ce1d326309ef81470e01196cd8c /engines/titanic/sound/auto_music_player_base.h
parent16bcc6beba1b28c822c194aa35368e69b48f43cb (diff)
downloadscummvm-rg350-b361f2bf1484a54dd776f1b67cbd15037201348a.tar.gz
scummvm-rg350-b361f2bf1484a54dd776f1b67cbd15037201348a.tar.bz2
scummvm-rg350-b361f2bf1484a54dd776f1b67cbd15037201348a.zip
TITANIC: Implemented CAutoMusicPlayer and CSeasonalMusicPlayer
Diffstat (limited to 'engines/titanic/sound/auto_music_player_base.h')
-rw-r--r--engines/titanic/sound/auto_music_player_base.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/engines/titanic/sound/auto_music_player_base.h b/engines/titanic/sound/auto_music_player_base.h
new file mode 100644
index 0000000000..66ffabb61c
--- /dev/null
+++ b/engines/titanic/sound/auto_music_player_base.h
@@ -0,0 +1,58 @@
+/* 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_AUTO_MUSIC_PLAYER_BASE_H
+#define TITANIC_AUTO_MUSIC_PLAYER_BASE_H
+
+#include "titanic/core/game_object.h"
+
+namespace Titanic {
+
+class CAutoMusicPlayerBase : public CGameObject {
+protected:
+ CString _string1;
+ int _fieldC8;
+ int _fieldCC;
+ int _fieldD0;
+ int _fieldD4;
+public:
+ CAutoMusicPlayerBase();
+
+ /**
+ * Return the class name
+ */
+ virtual const char *getClassName() const { return "CAutoMusicPlayerBase"; }
+
+ /**
+ * 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_AUTO_MUSIC_PLAYER_BASE_H */