Add Hero CellType

This commit is contained in:
NaiJi ✨ 2020-02-21 17:29:06 +03:00
parent 5e5ea14693
commit a3ab2e32da
1 changed files with 3 additions and 2 deletions

View File

@ -3,12 +3,13 @@
#include <array>
enum CellType
enum class CellType
{
Water = '.',
Ground = '-',
Charge = '$',
Bridge = char(177)
Bridge = char(177),
Hero = '@'
};
using coordinate = unsigned int;