aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/interaction.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-09-18 19:12:22 +0400
committerEugene Sandulenko2013-09-18 19:39:53 +0400
commit3bd3431ad421ba2832d79080b9e26c7967e8a50e (patch)
tree38bed406c076d3bfd73f33dde17e17c7b06d260d /engines/fullpipe/interaction.h
parentf70b737ad93544a905209ff9e002aad1f0db6050 (diff)
downloadscummvm-rg350-3bd3431ad421ba2832d79080b9e26c7967e8a50e.tar.gz
scummvm-rg350-3bd3431ad421ba2832d79080b9e26c7967e8a50e.tar.bz2
scummvm-rg350-3bd3431ad421ba2832d79080b9e26c7967e8a50e.zip
FULLPIPE: Remove C* prefixes from interaction classes
Diffstat (limited to 'engines/fullpipe/interaction.h')
-rw-r--r--engines/fullpipe/interaction.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/fullpipe/interaction.h b/engines/fullpipe/interaction.h
index 176ec940b9..f968cca8ee 100644
--- a/engines/fullpipe/interaction.h
+++ b/engines/fullpipe/interaction.h
@@ -35,7 +35,7 @@ int handleObjectInteraction(StaticANIObject *subject, GameObject *object, int in
bool canInteractAny(GameObject *obj1, GameObject *obj2, int invId);
-class CInteraction : public CObject {
+class Interaction : public CObject {
public:
int16 _objectId1;
int16 _objectId2;
@@ -53,13 +53,13 @@ class CInteraction : public CObject {
char *_actionName;
public:
- CInteraction();
+ Interaction();
virtual bool load(MfcArchive &file);
bool canInteract(GameObject *obj1, GameObject *obj2, int invId);
bool isOverlapping(StaticANIObject *subj, GameObject *obj);
};
-class CInteractionController : public CObject {
+class InteractionController : public CObject {
public:
ObList _interactions;
int16 _field_20;
@@ -69,7 +69,7 @@ class CInteractionController : public CObject {
static bool compareInteractions(const void *p1, const void *p2);
public:
- CInteractionController() : _field_20(0), _flag24(true) {}
+ InteractionController() : _field_20(0), _flag24(true) {}
virtual bool load(MfcArchive &file);