예제 #1
0
파일: State.cs 프로젝트: Kalnor/monodevelop
		protected void Adopt (State child)
		{
			Debug.Assert (child.parent == null);
			child.parent = this;
		}