diff --git a/level.h b/level.h index d313037..36b2229 100644 --- a/level.h +++ b/level.h @@ -3,12 +3,13 @@ #include -enum CellType +enum class CellType { Water = '.', Ground = '-', Charge = '$', - Bridge = char(177) + Bridge = char(177), + Hero = '@' }; using coordinate = unsigned int;