Add some methods to Cell to turn the Cell into a real Cell

This commit is contained in:
Eryn Wells 2023-02-03 18:01:34 -08:00
parent 2033e0c3a1
commit 8a5fc9c820

View file

@ -6,6 +6,11 @@ class Cell {
constructor(char, charColor) {
this.character = char;
}
floor() { this.character = "."; }
upStair() { this.character = "<"; }
downStair() { this.character = ">"; }
cooridor() { this.character = "#"; }
}
class Point {