public Buff(int id, Delayed <BuffProto> mold) { Id = id; this.image = mold.Select(x => x.Image); this.tooltip = mold.Select(x => x.Tooltip); }
public Item(Delayed <ItemProto> mold) : this() { image = mold.Select(x => x.Image); tooltip = mold.Select(x => x.Tooltip); }