Summary description for Formation.
예제 #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);
		}