Having a small "problem" here: (Tile is a struct)
Tile[][] tiles = new Tile[85][85]; gives meError: cannot implicitly convert expression (new Tile[85u][](cast(uint)85)) of type Tile[85u][] to Tile[][]
I'm trying to understand why that error occurs.
Having a small "problem" here: (Tile is a struct)
Tile[][] tiles = new Tile[85][85]; gives meError: cannot implicitly convert expression (new Tile[85u][](cast(uint)85)) of type Tile[85u][] to Tile[][]
I'm trying to understand why that error occurs.