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