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