Add Hero CellType

master
NaiJi ✨ 4 years ago
parent 5e5ea14693
commit a3ab2e32da

@ -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…
Cancel
Save