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