|
- using System;
-
- namespace SUISSEngine
- {
- [Serializable]
- public struct GridSize
- {
- public GridSize(int u, int v)
- {
- this.u = u;
- this.v = v;
- }
-
- public override string ToString()
- {
- return string.Format("({0}x{1})", this.u, this.v);
- }
-
- public int u;
-
- public int v;
- }
- }
|