Ejemplo n.º 1
0
 public void RemoveFont(GameFont font)
 {
     if (_fontCollection.Contains(font))
         _fontCollection.Remove(font);
 }
Ejemplo n.º 2
0
 public void AddFont(GameFont font)
 {
     if (!_fontCollection.Contains(font))
         _fontCollection.Add(font);
 }