This commit is contained in:
2019-10-27 02:51:35 +03:00
parent 0da505b01b
commit 184ac149ee
7 changed files with 139 additions and 63 deletions

View File

@ -40,6 +40,7 @@ type Tile struct {
BlocksSight bool
Explored bool
MustDraw bool
Colordance bool
}
func NewWall() *Tile {
@ -91,6 +92,7 @@ func NewWaterTile() *Tile {
BlocksSight: false,
Explored: false,
MustDraw: true, //fixme debug
Colordance: true,
Appearance: &Appearance{
Char: ".",
ColorSet: &TileColorSet{
@ -120,6 +122,7 @@ func NewDeepWaterTile() *Tile {
BlocksSight: false,
Explored: false,
MustDraw: true, //fixme debug
Colordance: true,
Appearance: &Appearance{
Char: " ",
ColorSet: &TileColorSet{