public GameObject(Point pos, Velocity vel, Graphic graphic) { Pos = pos; Speed = vel; RenderData = graphic; }
public GameObject() { Pos = new Point(); Speed = new Velocity(); RenderData = new Graphic(); }