示例#1
0
 public PlacedObject2D(Position2D position, Object2D theObject) : base(theObject.Width, theObject.Height)
 {
     Position = position;
 }
示例#2
0
 public PlacedObject2D(int x, int y, Object2D theObject) : base(theObject.Width, theObject.Height)
 {
     Position = new Position2D(x, y);
 }