This commit is contained in:
2023-04-02 16:55:23 +02:00
parent 8297290c31
commit ab5eab9bb0
12 changed files with 209 additions and 21 deletions

View File

@@ -15,9 +15,9 @@ public class MenuActivity extends AppCompatActivity {
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_menu);
this.findViewById(R.id.unJoeur)
this.findViewById(R.id.unJoueur)
.setOnClickListener(new ObservateurMenuDebutPartie(this, UtilTypePartie.UN_JOEUR, (CheckBox) this.findViewById(R.id.vide)));
this.findViewById(R.id.deuxJoeur)
this.findViewById(R.id.deuxJoueur)
.setOnClickListener(new ObservateurMenuDebutPartie(this, UtilTypePartie.DEUX_JOEUR, (CheckBox) this.findViewById(R.id.vide)));
}
}