Advertisement
Guest User

Untitled

a guest
Jan 28th, 2020
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. package com.example.tictactoe;
  2.  
  3. import androidx.appcompat.app.AppCompatActivity;
  4.  
  5. import android.os.Bundle;
  6. import android.view.View;
  7. import android.widget.*;
  8.  
  9. public class MainActivity extends AppCompatActivity {
  10.  
  11.  
  12. Game m;
  13.  
  14. @Override
  15. protected void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. m = new Game(this);
  18. setContentView(m);
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement