コード例 #1
0
ファイル: Form1.cs プロジェクト: tobyStupp/TicTacToeWindows
 public Form1()
 {
     p = new List<PlayerShape>();
     InitializeComponent();
     controller = new TicTacToeController(this);
 }
コード例 #2
0
 public void Start()
 {
     //Get Controller
     ticTacToeController = GetComponentInParent <TicTacToeController>();
 }