public void AddColor(PossibleDisplay display) { if (!m_colorsNeeded.Contains(m_colors[display])) { m_colorsNeeded.Add(m_colors[display]); m_image.color = CombineColors(m_colorsNeeded); } }
public void RemoveColor(PossibleDisplay display) { m_colorsNeeded.Remove(m_colors[display]); m_image.color = CombineColors(m_colorsNeeded); }