Introduce 4 new functions:

- g_map.beginGhostMode(float opacity)
- g_map.endGhostMode()
- UIMap::movePixels(int x, int y)
- MapView::move(int x, int y)
This commit is contained in:
Ahmed Samy
2013-08-30 01:54:36 +00:00
parent 3db8f54aa9
commit 56d6ef6642
7 changed files with 37 additions and 0 deletions

View File

@@ -194,6 +194,9 @@ public:
bool showZones() { return m_zoneFlags != 0; }
bool showZone(tileflags_t zone) { return (m_zoneFlags & zone) == zone; }
void beginGhostMode(float opacity);
void endGhostMode();
// known creature related
void addCreature(const CreaturePtr& creature);
CreaturePtr getCreatureById(uint32 id);