Add Hero CellType

master
NaiJi ✨ 4 years ago
parent 5e5ea14693
commit a3ab2e32da

@ -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;

Loading…
Cancel
Save