zombo-shooter/src/Tile.hpp
2025-10-27 12:35:48 +01:00

10 lines
84 B
C++

#ifndef TILE_HPP
#define TILE_HPP
enum class Tile
{
grass,
path,
};
#endif