public Behavior(Behavior otherBehavior) { Tag = otherBehavior.Tag; Table = otherBehavior.Table; Cycle = new LifeCycle(otherBehavior.Cycle); Properties = new LifeProperties(otherBehavior.Properties); }
public Behavior(BehaviorTag tag) { Tag = tag; Table = new ReactionTable(); Cycle = new LifeCycle(); Properties = new LifeProperties(); }