diff options
author | Ben Boeckel <MathStuf@gmail.com> | 2009-02-24 16:43:57 -0500 |
---|---|---|
committer | Ben Boeckel <MathStuf@gmail.com> | 2009-02-24 16:43:57 -0500 |
commit | ed45ef2c1b99ed07c7fe6585d23ddb19fa87fec5 (patch) | |
tree | 0b363f68308f1d43f030a12fd3c6b033c5b1ecbc /sigencore/Containment.cpp | |
parent | a6ba3f8693a4e0f77e8a7a997c605f7bb17005aa (diff) | |
download | sigen-ed45ef2c1b99ed07c7fe6585d23ddb19fa87fec5.tar.gz sigen-ed45ef2c1b99ed07c7fe6585d23ddb19fa87fec5.tar.xz sigen-ed45ef2c1b99ed07c7fe6585d23ddb19fa87fec5.zip |
Update sigencore to the sigmod->game rename
Diffstat (limited to 'sigencore/Containment.cpp')
-rw-r--r-- | sigencore/Containment.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sigencore/Containment.cpp b/sigencore/Containment.cpp index ce04caee..116f73f0 100644 --- a/sigencore/Containment.cpp +++ b/sigencore/Containment.cpp @@ -22,12 +22,12 @@ #include "Creature.h" // Sigscript includes +#include <sigscript/GameWrapper.h> #include <sigscript/RulesWrapper.h> -#include <sigscript/SigmodWrapper.h> -Sigencore::Containment::Containment(Sigscript::SigmodWrapper* sigmod, Sigscript::Config* parent) : +Sigencore::Containment::Containment(Sigscript::GameWrapper* game, Sigscript::Config* parent) : Sigscript::Config(parent), - m_sigmod(sigmod) + m_game(game) { } @@ -81,7 +81,7 @@ bool Sigencore::Containment::reorder(const int from, const int to) return false; } -Sigscript::SigmodWrapper* Sigencore::Containment::sigmod() const +Sigscript::GameWrapper* Sigencore::Containment::game() const { - return m_sigmod; + return m_game; } |