示例#1
0
 public CircleActor(bool fill, int growing, int radius, Tuple <int, int> lifespan, string color, Connector connector, int minRadius) : base(fill, growing, lifespan, color, connector)
 {
     Radius    = radius;
     MinRadius = minRadius;
 }
 protected Actor(bool fill, int growing, Tuple <int, int> lifespan, string color, Connector connector)
 {
     Lifespan    = lifespan;
     Color       = color;
     Filled      = fill;
     Growing     = growing;
     ConnectedTo = connector;
 }