Пример #1
0
		public PPhysManager(float s, float gx, float gy) {
			this.world = new PPhysWorld();
			this.gravity = new Vector2f(gx, gy);
			this.start = false;
			this.enableGravity = true;
			this.scale = s;
		}
Пример #2
0
 public PPhysManager(float s, float gx, float gy)
 {
     this.world         = new PPhysWorld();
     this.gravity       = new Vector2f(gx, gy);
     this.start         = false;
     this.enableGravity = true;
     this.scale         = s;
 }
Пример #3
0
		public void SetWorld(PPhysWorld world) {
			this.world = world;
		}
Пример #4
0
 public void SetWorld(PPhysWorld world)
 {
     this.world = world;
 }