mirror of
https://git.neolegacy.dev/pieeebot/cafeberry.git
synced 2026-09-23 11:42:28 +00:00
9 lines
123 B
C++
9 lines
123 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
|
|
class DirtTile : public Tile
|
|
{
|
|
friend class Tile;
|
|
protected:
|
|
DirtTile(int id);
|
|
}; |