This commit is contained in:
2023-04-08 16:15:01 +02:00
parent bbeca7dee9
commit f9d020a741
7 changed files with 182 additions and 155 deletions

View File

@@ -23,7 +23,7 @@ public class MainActivity extends Activity {
mHotSeat.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent HotSeat = new Intent(MainActivity.this, HotSeatActivity.class);
Intent HotSeat = new Intent(MainActivity.this, GameActivity.class);
HotSeat.putExtra("bot", false);
startActivity(HotSeat);
}
@@ -31,7 +31,7 @@ public class MainActivity extends Activity {
mORDI.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent ordi = new Intent(MainActivity.this, HotSeatActivity.class);
Intent ordi = new Intent(MainActivity.this, GameActivity.class);
ordi.putExtra("bot", true);
startActivity(ordi);
}