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.
17 lines
376 B
C++
17 lines
376 B
C++
#pragma once
|
|
using namespace std;
|
|
|
|
#include "TileItem.h"
|
|
|
|
class SmoothStoneBrickTileItem : public TileItem
|
|
{
|
|
private:
|
|
Tile *parentTile;
|
|
|
|
public:
|
|
SmoothStoneBrickTileItem(int id, Tile *parentTile);
|
|
|
|
virtual Icon *getIcon(int itemAuxValue);
|
|
virtual int getLevelDataForAuxValue(int auxValue);
|
|
virtual unsigned int getDescriptionId(std::shared_ptr<ItemInstance> instance);
|
|
}; |