Ejemplo n.º 1
0
 public void RemoveObject(GameArtData2 temp)
 {
     if (gameArtList.Contains(temp))
     {
         gameArtList.Remove(temp);
     }
 }
Ejemplo n.º 2
0
 public void AddObject(GameArtData2 temp)
 {
     if (!ContainsObject(temp))
     {
         gameArtList.Add(temp);
     }
 }
Ejemplo n.º 3
0
 public bool ContainsObject(GameArtData2 temp)
 {
     return(gameArtList.Contains(temp));
 }