mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-27 23:03:00 +00:00
10 lines
173 B
C++
10 lines
173 B
C++
#pragma once
|
|
#include "Tile.h"
|
|
#include "minecraft/world/level/material/Material.h"
|
|
|
|
class AirTile : public Tile {
|
|
friend class Tile;
|
|
|
|
protected:
|
|
AirTile(int id);
|
|
}; |