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