diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-03-05 13:54:21 -0500 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-03-05 13:54:21 -0500 |
| commit | bfc2c1f6c2f038ed7592077a4ec09285a828df44 (patch) | |
| tree | 4a44a3a3e36c1fe6a396f23da792bddf49d37540 | |
| parent | ca6b3a8905951e3d41e890b95671ab952315fa09 (diff) | |
Scoped arguments for signals
| -rw-r--r-- | sigencore/Arena.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sigencore/Arena.h b/sigencore/Arena.h index 8d66b965..104f8af3 100644 --- a/sigencore/Arena.h +++ b/sigencore/Arena.h @@ -111,8 +111,8 @@ class SIGENCORE_EXPORT Arena : public Sigscript::Config void weatherStarted(TeamMember* teamMember, Sigscript::WeatherWrapper* weather); void weatherEnded(Sigscript::WeatherWrapper* weather); - void clientAdded(Client* client, const int team); - void clientRemoved(Client* client, const int team); + void clientAdded(Sigencore::Client* client, const int team); + void clientRemoved(Sigencore::Client* client, const int team); protected: Arena(Sigscript::GameWrapper* game, Sigscript::Config* parent); virtual ~Arena(); |
