diff options
| author | Ben Boeckel <MathStuf@gmail.com> | 2009-03-28 02:13:30 -0400 |
|---|---|---|
| committer | Ben Boeckel <MathStuf@gmail.com> | 2009-03-28 02:13:30 -0400 |
| commit | e1763505a75e7f155458609f720f9564286539d3 (patch) | |
| tree | 14bb178449f7040199abca15b67db906fccb3f1b /sigencore | |
| parent | 6fa780b65015b8b664326193e315ec69cc685b08 (diff) | |
| download | sigen-e1763505a75e7f155458609f720f9564286539d3.tar.gz sigen-e1763505a75e7f155458609f720f9564286539d3.tar.xz sigen-e1763505a75e7f155458609f720f9564286539d3.zip | |
Overworld shouldn't use QGraphicsScene
Diffstat (limited to 'sigencore')
| -rw-r--r-- | sigencore/Overworld.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sigencore/Overworld.h b/sigencore/Overworld.h index 538aa00d..697e07ca 100644 --- a/sigencore/Overworld.h +++ b/sigencore/Overworld.h @@ -25,14 +25,17 @@ #include <sigscript/Config.h> // Forward declarations -class QGraphicsScene; +namespace Sigscript +{ +class GameWrapper; +} namespace Sigencore { class SIGENCORE_EXPORT Overworld : public Sigscript::Config { public: - virtual QGraphicsScene* scene() const = 0; + Overworld(Sigscript::GameWrapper* game, Sigscript::Config* parent); }; } |
