Exemplo n.º 1
0
    public void StartGame()
    {
        mCurrentRound = CheePonRound.Black;

        mGomokuCheePon.ClearCheePon();
        mCheePonGameView.SetCheePon(mGomokuCheePon, this);

        mCheePonGameView.SetRound(mCurrentRound);
        mCheePonGameView.Show();
    }
Exemplo n.º 2
0
 void NextRound()
 {
     mCurrentRound = mCurrentRound == CheePonRound.Black ? CheePonRound.White : CheePonRound.Black;
     mCheePonGameView.SetRound(mCurrentRound);
 }
Exemplo n.º 3
0
 public void SetRound(CheePonRound round)
 {
     m_ImageCurrentRound.color = round == CheePonRound.Black ? Color.black : Color.white;
     m_RoundRoot.gameObject.SetActive(true);
 }