示例#1
0
文件: IShow.cs 项目: Orkad/Zombie2D
 public static void Toogle(this IShow thisShow)
 {
     if (thisShow.Shown)
     {
         thisShow.Hide();
     }
     else
     {
         thisShow.Show();
     }
 }