public void RemoveGem(int index) { if (index >= Gemas.Count - 1) { Gemas.RemoveAt(index); } }
public void AddGem(IGema gem) { Gemas.Add(gem); }