From 3ca64943432a0ff8a0414b62ee7dedc6a4ca4018 Mon Sep 17 00:00:00 2001 From: Eduardo Bart Date: Sat, 28 Jul 2012 20:45:16 -0300 Subject: [PATCH] Remove unused func --- src/otclient/tile.cpp | 5 ----- src/otclient/tile.h | 1 - 2 files changed, 6 deletions(-) diff --git a/src/otclient/tile.cpp b/src/otclient/tile.cpp index d533fc8d..1a33e1bd 100644 --- a/src/otclient/tile.cpp +++ b/src/otclient/tile.cpp @@ -152,11 +152,6 @@ void Tile::removeWalkingCreature(const CreaturePtr& creature) m_walkingCreatures.erase(it); } -void Tile::appendThing(const ThingPtr& thing) -{ - -} - void Tile::addThing(const ThingPtr& thing, int stackPos) { if(!thing) diff --git a/src/otclient/tile.h b/src/otclient/tile.h index 6231ee6e..47fba1c3 100644 --- a/src/otclient/tile.h +++ b/src/otclient/tile.h @@ -64,7 +64,6 @@ public: void addWalkingCreature(const CreaturePtr& creature); void removeWalkingCreature(const CreaturePtr& creature); - void appendThing(const ThingPtr& thing); void addThing(const ThingPtr& thing, int stackPos); bool removeThing(ThingPtr thing); ThingPtr getThing(int stackPos);