示例#1
0
文件: KNT_Game.cs 项目: ZEP-Arter/KNT
 public static StackButton createStack(Tile hex, Thing t, SpriteBatch s)
 {
     StackButton stackB = new StackButton(stackTexture, me, s, t, hex, 30, 30, 0, 0);
     StackButtons.Add(stackB);
     return stackB;
 }
示例#2
0
文件: KNT_Game.cs 项目: ZEP-Arter/KNT
 public static void removeStack(StackButton s)
 {
     StackButtons.Remove(s);
 }