Exemplo n.º 1
0
 public virtual void AddChild(Actor actor)
 {
     children.Add(actor);
     actor.level = this.level+1;
 }
Exemplo n.º 2
0
 static bool CheckDeadActor(Actor actor)
 {
     //@e Delete the elements to be proper with this condition.
     //@j この条件で真になる要素を削除。
     return actor.Status == ActorStatus.Dead;
 }