Пример #1
0
		public bool Contains(Formation f)
		{
			return List.Contains(f);
		}
Пример #2
0
		public void Insert(int index, Formation f)
		{
			List.Insert(index, f);
		}
Пример #3
0
		public void Remove(Formation f)
		{
			List.Remove(f);
		
		}
Пример #4
0
		public int Add(Formation f)
		{	
			return List.Add(f);
		}