summaryrefslogtreecommitdiffstats
path: root/sigmod/Tile.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2008-11-08 06:15:08 +0000
committerBen Boeckel <MathStuf@gmail.com>2008-11-08 06:15:08 +0000
commit8bad37e82371bd41864903ac0d6f49808ad119bf (patch)
tree77f0cb46059654cefb357d6eb4064c5740edf3d4 /sigmod/Tile.h
parentc127c0dae65a7600e0ab30b634f25d4915c61d16 (diff)
downloadsigen-8bad37e82371bd41864903ac0d6f49808ad119bf.tar.gz
sigen-8bad37e82371bd41864903ac0d6f49808ad119bf.tar.xz
sigen-8bad37e82371bd41864903ac0d6f49808ad119bf.zip
[FIX] No more asserts in sigmod
[FIX] Moved to using *ById instead of *Index methods in sigmod [FIX] Tilemaps are now collaged (not completely done on the editing side yet) [FIX] Removed the resource files (drawn natively instead) [FIX] ATBTimer now uses the built-in QTimer in a QObject [FIX] Coordinates are now edited on the map for warps, trainers, and effects [FIX] Tiles are now completely scripted [FIX] Config is now thread-safe git-svn-id: https://pokegen.svn.sourceforge.net/svnroot/pokegen/trunk@308 6ecfd1a5-f3ed-3746-8530-beee90d26b22
Diffstat (limited to 'sigmod/Tile.h')
-rw-r--r--sigmod/Tile.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/sigmod/Tile.h b/sigmod/Tile.h
index 47ccb161..c873f785 100644
--- a/sigmod/Tile.h
+++ b/sigmod/Tile.h
@@ -45,20 +45,14 @@ class SIGMOD_EXPORT Tile : public Object
QDomElement save() const;
void setName(const QString& name);
- void setSprite(const int sprite);
- void setFrom(const Direction direction, const bool state);
void setScript(const Sigcore::Script& script);
QString name() const;
- int sprite() const;
- bool from(const Direction direction) const;
Sigcore::Script script() const;
Tile& operator=(const Tile& rhs);
private:
QString m_name;
- int m_sprite;
- QVarLengthArray<bool, D_Right - D_Up + 1> m_from;
Sigcore::Script m_script;
};
}