示例#1
0
 private void ShowInfoList(int id)
 {
     GUI.color = Color.white;
     for (int i = 0; i < Cheat.infos.Count; i++)
     {
         InfoValue infoValue = Cheat.infos[i] as InfoValue;
         if (infoValue != null)
         {
             GUILayout.Label(infoValue.showName + ":  " + infoValue.Get().ToString(), new GUILayoutOption[0]);
         }
     }
     GUI.DragWindow();
 }