public FishItem() { if (syncObject == null) { syncObject = new PySync(this); syncObject.init(); } this.build(); }
public FishItem(int id) : base(id, 1, false, -1, 1) { if (syncObject == null) { syncObject = new PySync(this); syncObject.init(); } this.Name += " "; this.Id = id; this.Description = base.getDescription(); this.FishStack.Add(new FishModel(-1, this.Name, -1, -1, 0, 1)); }
public FishItem(int id, FishModel fish) : base(id, 1, false, -1, fish.quality) { if (syncObject == null) { syncObject = new PySync(this); syncObject.init(); } this.Name += " "; this.Id = id; this.Description = base.getDescription(); this.FishStack.Add(fish); }
public Bug() { syncObject = new PySync(this); syncObject.init(); }