您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

24 行
313 B

  1. using System;
  2. namespace SUISSEngine
  3. {
  4. [Serializable]
  5. public struct GridSize
  6. {
  7. public GridSize(int u, int v)
  8. {
  9. this.u = u;
  10. this.v = v;
  11. }
  12. public override string ToString()
  13. {
  14. return string.Format("({0}x{1})", this.u, this.v);
  15. }
  16. public int u;
  17. public int v;
  18. }
  19. }