mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-26 08:56:08 +00:00
11 lines
136 B
C++
11 lines
136 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
#include "Material.h"
|
|
|
|
class AirTile : public Tile
|
|
{
|
|
friend class Tile;
|
|
|
|
protected:
|
|
AirTile(int id);
|
|
}; |