duck-hunt-ds

Duck Hunt clone for Nintendo DS
git clone https://git.neuralcrash.com/duck-hunt-ds.git
Log | Files | Refs | LICENSE

main.cpp (206B)


      1 #include "Programme.hpp"
      2 #include <cstdlib>
      3 #include <ctime>
      4 
      5 int main()
      6 {
      7 	srand(time(NULL));
      8 	Programme leProgramme;
      9 
     10 	while (true)
     11 	{
     12 		leProgramme.EcranTitre();
     13 		leProgramme.Partie();
     14 	}
     15 
     16 	return 0;
     17 }