10 lines
84 B
C++
10 lines
84 B
C++
#ifndef TILE_HPP
|
|
#define TILE_HPP
|
|
|
|
enum class Tile
|
|
{
|
|
grass,
|
|
path,
|
|
};
|
|
|
|
#endif |