コード例 #1
0
ファイル: WzVectorProperty.cs プロジェクト: odasm/HaRepacker
 public void Dispose()
 {
     this.name = null;
     this.x.Dispose();
     this.x = null;
     this.y.Dispose();
     this.y = null;
 }
コード例 #2
0
ファイル: WzVectorProperty.cs プロジェクト: odasm/HaRepacker
 public WzVectorProperty(string name, WzCompressedIntProperty x, WzCompressedIntProperty y)
 {
     this.name = name;
     this.x    = x;
     this.y    = y;
 }