Unity Comment faire une instance GameManager

//Making the Game Manager script accessible (Taro Dev Code)
public static GameManager = instance;
void Awake(){
	instance = this;
}
Inquisitive Ibis