mirror of
https://github.com/mvvasilev/last_light.git
synced 2025-04-19 12:49:52 +03:00
14 lines
323 B
Go
14 lines
323 B
Go
|
package model
|
||
|
|
||
|
// import "github.com/gdamore/tcell/v2"
|
||
|
|
||
|
// func CreateEmptyDungeonLevel(width, height int) *BasicMap {
|
||
|
// tiles := make([][]Tile, height)
|
||
|
|
||
|
// for h := range height {
|
||
|
// tiles[h] = make([]Tile, width)
|
||
|
// }
|
||
|
|
||
|
// return CreateBasicMap(tiles, tcell.StyleDefault.Foreground(tcell.ColorLightSlateGrey))
|
||
|
// }
|