Add Hero CellType
This commit is contained in:
parent
5e5ea14693
commit
a3ab2e32da
5
level.h
5
level.h
|
@ -3,12 +3,13 @@
|
||||||
|
|
||||||
#include <array>
|
#include <array>
|
||||||
|
|
||||||
enum CellType
|
enum class CellType
|
||||||
{
|
{
|
||||||
Water = '.',
|
Water = '.',
|
||||||
Ground = '-',
|
Ground = '-',
|
||||||
Charge = '$',
|
Charge = '$',
|
||||||
Bridge = char(177)
|
Bridge = char(177),
|
||||||
|
Hero = '@'
|
||||||
};
|
};
|
||||||
|
|
||||||
using coordinate = unsigned int;
|
using coordinate = unsigned int;
|
||||||
|
|
Loading…
Reference in New Issue