mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-10 23:17:13 +00:00
7 lines
175 B
C++
7 lines
175 B
C++
#include "AirTile.h"
|
|
|
|
#include "minecraft/world/level/material/Material.h"
|
|
#include "minecraft/world/level/tile/Tile.h"
|
|
|
|
AirTile::AirTile(int id) : Tile(id, Material::air) {}
|