mirror of
https://github.com/edubart/otclient.git
synced 2025-05-01 18:19:20 +02:00
22 lines
303 B
C++
22 lines
303 B
C++
#ifndef TILE_H
|
|
#define TILE_H
|
|
|
|
#include <global.h>
|
|
#include "thing.h"
|
|
|
|
class Tile
|
|
{
|
|
public:
|
|
void addThing(Thing *thing);
|
|
|
|
void draw(int x, int y);
|
|
|
|
private:
|
|
// ground
|
|
std::list<Thing*> m_itemsBot;
|
|
std::list<Thing*> m_creatures;
|
|
std::list<Thing*> m_itemsTop;
|
|
};
|
|
|
|
#endif // TILE_H
|