summaryrefslogtreecommitdiffstats
path: root/sigscript/NatureWrapper.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-02-24 16:18:17 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-02-24 16:18:17 -0500
commitb28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67 (patch)
tree01971661209ccb6d6844a096a5ea3d39baeabe68 /sigscript/NatureWrapper.h
parentb6d07f0ca14256a42268e69190891c56bf978bd4 (diff)
downloadsigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.tar.gz
sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.tar.xz
sigen-b28b0cb3d52336f77b7ad8b313b3d6fd6b7d0e67.zip
Moved SigmodWrapper to GameWrapper
Diffstat (limited to 'sigscript/NatureWrapper.h')
-rw-r--r--sigscript/NatureWrapper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sigscript/NatureWrapper.h b/sigscript/NatureWrapper.h
index 280dc491..9393578e 100644
--- a/sigscript/NatureWrapper.h
+++ b/sigscript/NatureWrapper.h
@@ -40,13 +40,13 @@ class SIGSCRIPT_EXPORT NatureWrapper : public ObjectWrapper
Q_OBJECT
public:
- static NatureWrapper* create(const Sigmod::Nature* nature, SigmodWrapper* parent);
+ static NatureWrapper* create(const Sigmod::Nature* nature, GameWrapper* parent);
Q_SCRIPTABLE QString name() const;
Q_SCRIPTABLE Sigcore::Fraction stat(const Sigmod::Stat stat) const;
Q_SCRIPTABLE int weight() const;
private:
- NatureWrapper(const Sigmod::Nature* nature, SigmodWrapper* parent);
+ NatureWrapper(const Sigmod::Nature* nature, GameWrapper* parent);
NatureWrapper& operator=(const NatureWrapper& rhs);
const Sigmod::Nature* m_nature;