mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 21:53:37 +00:00
10 lines
142 B
C++
10 lines
142 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
#include "Material.h"
|
|
|
|
class AirTile : public Tile {
|
|
friend class Tile;
|
|
|
|
protected:
|
|
AirTile(int id);
|
|
}; |