예제 #1
0
파일: Trou.cs 프로젝트: cadichris/bobail
 void Update()
 {
     if (!estAllume && jeu.ActifPeutAtteindre(X, Y))
     {
         Allumer();
     }
     if (estAllume && !jeu.ActifPeutAtteindre(X, Y))
     {
         Eteindre();
     }
 }