コード例 #1
0
ファイル: SupportClasses.cs プロジェクト: wshanshan/DDD
 public MoveItemType(UnitType u, int throttle, VectorType direction)
 {
     unit = u;
     Throttle = throttle;
     Direction = direction;
 }
コード例 #2
0
ファイル: SupportClasses.cs プロジェクト: wshanshan/DDD
 public MoveItemType()
 {
     unit = null;
     Throttle = 0;
     Direction = null;
 }