mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 10:43:35 +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) {}
|