How do I initialize this:
public const int[][,] Map = ...
I would like to do something like this:
public const int[][,] Map = {
{
{1, 1, 1, 1},
{1, 1, 1, 1},
{1, 1, 1, 1},
{1, 1, 1, 1},
},
{
{1, 1, 1, 1},
{1, 0, 0, 1},
{1, 0, 0, 1},
{1, 1, 1, 1},
},
};
I do not want to create int[,,] Map, because somewhere else I want:
loader.Load(Map[map_numer]);