summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sigencore/Arena.cpp5
-rw-r--r--sigencore/Arena.h2
2 files changed, 0 insertions, 7 deletions
diff --git a/sigencore/Arena.cpp b/sigencore/Arena.cpp
index 5c3f7102..e092660d 100644
--- a/sigencore/Arena.cpp
+++ b/sigencore/Arena.cpp
@@ -83,11 +83,6 @@ GameWrapper* Arena::game() const
return m_game;
}
-QGraphicsScene* Arena::scene() const
-{
- return m_scene;
-}
-
QList<TeamMember*> Arena::active(const int team) const
{
QList<TeamMember*> active;
diff --git a/sigencore/Arena.h b/sigencore/Arena.h
index 104f8af3..61ac5fa2 100644
--- a/sigencore/Arena.h
+++ b/sigencore/Arena.h
@@ -75,7 +75,6 @@ class SIGENCORE_EXPORT Arena : public Sigscript::Config
static const int NoTeam;
Q_SCRIPTABLE Sigscript::GameWrapper* game() const;
- Q_SCRIPTABLE QGraphicsScene* scene() const;
Q_SCRIPTABLE QList<TeamMember*> active(const int team) const;
Q_SCRIPTABLE QList<TeamMember*> active(Client* client) const;
@@ -127,7 +126,6 @@ class SIGENCORE_EXPORT Arena : public Sigscript::Config
TeamMember* findMember(const QUuid& id);
Sigscript::GameWrapper* m_game;
- QGraphicsScene* m_scene;
QMap<Client*, int> m_teams;
Kross::ActionCollection* m_actions;
QMap<Sigscript::WeatherWrapper*, Kross::Action*> m_weathers;