Example #1
0
 public Physics(World w, PSetting setting, int speed)
 {
     this.w = w;
     this.setting = setting;
     this.speed = speed;
     this.random = new Random();
 }
Example #2
0
 public Physics(World w, PSetting setting, int speed)
 {
     this.w       = w;
     this.setting = setting;
     this.speed   = speed;
     this.random  = new Random();
 }
Example #3
0
 public Physics(World w, PSetting setting)
     : this(w, setting, 250)
 {
 }
Example #4
0
 public Physics(World w, PSetting setting) : this(w, setting, 250)
 {
 }
Example #5
0
 public Physics(World w, PSetting setting)
 {
     this.w = w;
     this.setting = setting;
     this.wait = this.speed;
 }
Example #6
0
 public Physics(World w)
 {
     this.w = w;
     setting = PSetting.Normal;
     this.wait = this.speed;
 }