Summary description for Formation.
Esempio n. 1
0
		public bool Contains(Formation f)
		{
			return List.Contains(f);
		}
Esempio n. 2
0
		public void Insert(int index, Formation f)
		{
			List.Insert(index, f);
		}
Esempio n. 3
0
		public void Remove(Formation f)
		{
			List.Remove(f);
		
		}
Esempio n. 4
0
		public int Add(Formation f)
		{	
			return List.Add(f);
		}