Ejemplo n.º 1
0
 public ObjGame(ObjGame other)
 {
     this.x      = other.x;
     this.y      = other.y;
     this.width  = other.width;
     this.height = other.height;
     this.type   = other.type;
     this.name   = other.name;
 }
Ejemplo n.º 2
0
 public Item(ObjGame obj, String container) : base(obj)
 {
     this.container = container;
 }
Ejemplo n.º 3
0
 public Item(ObjGame obj) : base(obj)
 {
 }
Ejemplo n.º 4
0
 public Boss(ObjGame obj) : base(obj)
 {
 }
Ejemplo n.º 5
0
 public Ladder(ObjGame obj) : base(obj)
 {
 }
Ejemplo n.º 6
0
 public Enemy(ObjGame obj) : base(obj)
 {
 }