예제 #1
0
파일: Actor.cs 프로젝트: simard/FloWS
 public virtual void AddChild(Actor actor)
 {
     children.Add(actor);
     actor.level = this.level+1;
 }
예제 #2
0
파일: Actor.cs 프로젝트: simard/FloWS
 static bool CheckStatus(Actor actor)
 {
     //@j この条件で真になる要素を削除。
     //@e Delete the elements to be proper with this condition.
     return actor.Status == ActorStatus.Dead;
 }