This commit is contained in:
anton.gurov
2019-11-12 12:48:36 +03:00
parent 1ba189697f
commit c6d3997e6f
6 changed files with 125 additions and 9 deletions

View File

@ -82,3 +82,8 @@ func (l *Level) SetAllInvisible() {
}
}
func (l *Level) SetAllVisible() {
for idx, _ := range l.Tiles {
l.Tiles[idx].Visible = true
}
}