Ejemplo n.º 1
0
 public void SetCustomAction(CustomPerUnitAction perUnit)
 {
     _perUnit = perUnit;
 }
Ejemplo n.º 2
0
 public Custom(CustomPerUnitAction perUnit)
 {
     _perUnit = perUnit;
 }
Ejemplo n.º 3
0
 public ScatterCustom(string name, float loadWeight, int count, CustomPerUnitAction perUnit = null)
     : base(name, loadWeight)
 {
     _perUnit = perUnit;
     _count   = count;
 }