mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 13:23:37 +00:00
7 lines
106 B
C++
7 lines
106 B
C++
#include "../Build/stdafx.h"
|
|
#include "AirTile.h"
|
|
|
|
AirTile::AirTile(int id) : Tile(id, Material::air)
|
|
{
|
|
}
|