public void AddBehaviour(IImpactBehaviour b)
 {
     behaviour.Add(b);
 }
Beispiel #2
0
 public void AddBehaviour(IImpactBehaviour b)
 {
     behaviour.Add(b);
 }
 public Throwable(string n, string t, IImpactBehaviour b)
 {
     name = n;
     type = t;
     behaviour.Add(b);
 }
Beispiel #4
0
 public Throwable(string n, string t, IImpactBehaviour b)
 {
     name = n;
     type = t;
     behaviour.Add(b);
 }