Exemple #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;
 }
Exemple #2
0
 public Item(ObjGame obj, String container) : base(obj)
 {
     this.container = container;
 }
Exemple #3
0
 public Item(ObjGame obj) : base(obj)
 {
 }
Exemple #4
0
 public Boss(ObjGame obj) : base(obj)
 {
 }
Exemple #5
0
 public Ladder(ObjGame obj) : base(obj)
 {
 }
Exemple #6
0
 public Enemy(ObjGame obj) : base(obj)
 {
 }