mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 02:33:37 +00:00
13 lines
160 B
C++
13 lines
160 B
C++
#pragma once
|
|
|
|
#include "Tile.h"
|
|
|
|
class Sponge : public Tile {
|
|
friend class Tile;
|
|
|
|
public:
|
|
static const int RANGE = 2;
|
|
|
|
protected:
|
|
Sponge(int id);
|
|
}; |