public void Create()
 {
     this.game.AddCamera(this);
     Operations.AddInterestArea(this.game, this.Id, this.Position, this.ViewDistanceEnter, this.ViewDistanceExit);
 }
 public void Remove()
 {
     Operations.RemoveInterestArea(this.game, this.Id);
     this.game.RemoveCamera(this.cameraId);
 }