aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/converse.h
diff options
context:
space:
mode:
authorstrangerke2011-04-13 21:27:46 +0200
committerstrangerke2011-04-13 21:27:46 +0200
commit66b43f2312578f35e0718d0699de207a7bf77f1a (patch)
tree335cfee6fdf606686f178619c3ef5c1eb99fd573 /engines/tsage/converse.h
parenta132bbb10c2f7349862c6c35d03d829ff76d5dea (diff)
downloadscummvm-rg350-66b43f2312578f35e0718d0699de207a7bf77f1a.tar.gz
scummvm-rg350-66b43f2312578f35e0718d0699de207a7bf77f1a.tar.bz2
scummvm-rg350-66b43f2312578f35e0718d0699de207a7bf77f1a.zip
TSAGE: "Cosmetic" cleanups
Diffstat (limited to 'engines/tsage/converse.h')
-rw-r--r--engines/tsage/converse.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/engines/tsage/converse.h b/engines/tsage/converse.h
index 6159b2f782..4d6e51a6b8 100644
--- a/engines/tsage/converse.h
+++ b/engines/tsage/converse.h
@@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
- * $URL: https://scummvm-misc.svn.sourceforge.net/svnroot/scummvm-misc/trunk/engines/tsage/converse.h $
- * $Id: converse.h 230 2011-02-12 06:57:31Z dreammaster $
+ * $URL$
+ * $Id$
*
*/
@@ -31,12 +31,12 @@
namespace tSage {
-class StripCallback: public Action {
+class StripCallback : public Action {
public:
virtual void stripCallback(int v) = 0;
};
-class SequenceManager: public Action {
+class SequenceManager : public Action {
private:
void setup();
uint16 getNextValue();
@@ -66,7 +66,7 @@ public:
};
-class Speaker: public EventHandler {
+class Speaker : public EventHandler {
public:
Rect _fieldA;
Action *_field18;
@@ -95,14 +95,14 @@ public:
void setTextPos(const Common::Point &pt) { _textPos = pt; }
};
-class SpeakerGameText: public Speaker {
+class SpeakerGameText : public Speaker {
public:
SpeakerGameText();
virtual Common::String getClassName() { return "SpeakerGameText"; }
};
-class ScreenSpeaker: public Speaker {
+class ScreenSpeaker : public Speaker {
public:
SceneItem *_npc;
public:
@@ -112,14 +112,14 @@ public:
virtual void setText(const Common::String &msg);
};
-class SpeakerAction: public Action {
+class SpeakerAction : public Action {
public:
virtual void signal();
virtual Common::String getClassName() { return "SpeakerAction"; }
};
-class AnimatedSpeaker: public Speaker {
+class AnimatedSpeaker : public Speaker {
public:
SceneObject _object1;
SceneObject _object2;
@@ -135,13 +135,13 @@ public:
Rect _bounds;
ChoiceEntry() {}
- ChoiceEntry(const Common::String &msg, const Rect &bounds) {
+ ChoiceEntry(const Common::String &msg, const Rect &bounds) {
_msg = msg;
_bounds = bounds;
}
};
-class ConversationChoiceDialog: public ModalDialog {
+class ConversationChoiceDialog : public ModalDialog {
public:
int _stdColour;
int _highlightColour;
@@ -163,12 +163,12 @@ public:
virtual void draw();
};
-class Obj0A: public Serialisable {
+class Obj0A : public Serialisable {
public:
int _id;
uint _scriptOffset;
- virtual void synchronise(Serialiser &s) {
+ virtual void synchronise(Serialiser &s) {
s.syncAsSint32LE(_id);
s.syncAsUint32LE(_scriptOffset);
}
@@ -176,7 +176,7 @@ public:
#define OBJ44_LIST_SIZE 5
-class Obj44: public Serialisable {
+class Obj44 : public Serialisable {
public:
int _id;
int _field2[OBJ44_LIST_SIZE];
@@ -187,7 +187,7 @@ public:
virtual void synchronise(Serialiser &s);
};
-class StripManager: public Action {
+class StripManager : public Action {
private:
void reset();
void load();