This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
18 lines
410 B
C++
18 lines
410 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "TileItem.h"
|
|
|
|
class LeafTileItem : public TileItem
|
|
{
|
|
using TileItem::getColor;
|
|
public:
|
|
LeafTileItem(int id);
|
|
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
|
virtual Icon *getIcon(int itemAuxValue);
|
|
virtual int getColor(std::shared_ptr<ItemInstance> item, int spriteLayer);
|
|
|
|
virtual unsigned int getDescriptionId(std::shared_ptr<ItemInstance> instance);
|
|
};
|