示例#1
0
 private void UiUpdate()
 {
     if (CurrentGameStatus == GameStatus.Running)
     {
         DrawComponent.Draw(Map);
     }
     else
     {
         DrawComponent.DrawCells(new List <TextCell> {
             new TextCell("NOT Running", Map)
         });
     }
 }