summaryrefslogtreecommitdiffstats
path: root/sigencore/Arena.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-24 16:43:57 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-24 16:43:57 -0500
commited45ef2c1b99ed07c7fe6585d23ddb19fa87fec5 (patch)
tree0b363f68308f1d43f030a12fd3c6b033c5b1ecbc /sigencore/Arena.h
parenta6ba3f8693a4e0f77e8a7a997c605f7bb17005aa (diff)
downloadsigen-ed45ef2c1b99ed07c7fe6585d23ddb19fa87fec5.tar.gz
sigen-ed45ef2c1b99ed07c7fe6585d23ddb19fa87fec5.tar.xz
sigen-ed45ef2c1b99ed07c7fe6585d23ddb19fa87fec5.zip
Update sigencore to the sigmod->game rename
Diffstat (limited to 'sigencore/Arena.h')
-rw-r--r--sigencore/Arena.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sigencore/Arena.h b/sigencore/Arena.h
index 15fd64a9..8b9b3317 100644
--- a/sigencore/Arena.h
+++ b/sigencore/Arena.h
@@ -44,7 +44,7 @@ class Script;
}
namespace Sigscript
{
-class SigmodWrapper;
+class GameWrapper;
class WeatherWrapper;
}
@@ -92,7 +92,7 @@ class SIGENCORE_EXPORT Arena : public Sigscript::Config
Q_SCRIPTABLE virtual TeamMember::Action requestAction(TeamMember* teamMember) const = 0;
Q_SCRIPTABLE virtual bool isTeamAllowed(Team* team) = 0;
- Q_SCRIPTABLE Sigscript::SigmodWrapper* sigmod() const;
+ Q_SCRIPTABLE Sigscript::GameWrapper* game() const;
public slots:
bool addClient(Client* client, const int team);
void removeClient(Client* client);
@@ -110,7 +110,7 @@ class SIGENCORE_EXPORT Arena : public Sigscript::Config
void clientAdded(Client* client, const int team);
void clientRemoved(Client* client, const int team);
protected:
- Arena(Sigscript::SigmodWrapper* sigmod, const bool isWild, Sigscript::Config* parent);
+ Arena(Sigscript::GameWrapper* game, const bool isWild, Sigscript::Config* parent);
virtual ~Arena();
virtual void handleAction(TeamMember* teamMember, TeamMember::Action action);
@@ -122,7 +122,7 @@ class SIGENCORE_EXPORT Arena : public Sigscript::Config
TeamMember* findMember(const QUuid& id);
- Sigscript::SigmodWrapper* m_sigmod;
+ Sigscript::GameWrapper* m_game;
const bool m_isWild;
QMap<Client*, int> m_teams;
Kross::ActionCollection* m_actions;