zombo-shooter/src/Tile.hpp
2025-11-03 14:09:23 +01:00

11 lines
79 B
C++

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