예제 #1
0
파일: Game.cs 프로젝트: L00G/2048Game
 public void Render()
 {
     m_boardBorder.Update(m_board.GetBoard());
     if (!m_play)
     {
         m_scorePanel.Update(m_score, m_bestSocre);
     }
     else
     {
         m_scorePanel.Update(m_score);
     }
 }