My question is quite simple:
why is AfficherGrille underlined in red in the void Start() function?
void Start()
{
AfficherGrille();
}
void AfficherGrille()
{
for (int i = 0; i < 8; i++)
{
string row = "";
for (int j = 0; j < 8; j++)
{
row += grid[i, j] + " ";
}
Debug.Log(row);
}
}
Voici une image:
Thanks for your help,
A+