Example #1
0
 public CollisionManager()
 {
     playerCollision = new PlayerCollision();
 }
Example #2
0
 private void UpdatePlayerCollisions()
 {
     this.playerCollision = this.collisionManager.CheckCollisionPlayerWithTerrain(this.player, this.levelManager.GetCreatedLevel());
 }