Skip to content

Commit

Permalink
Make these fields protected
Browse files Browse the repository at this point in the history
My subclass needs them :(
  • Loading branch information
Scott Kennedy committed Aug 2, 2012
1 parent a28dafd commit c74cab7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/org/andengine/engine/camera/SmoothCamera.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ public class SmoothCamera extends ZoomCamera {
// Fields
// ===========================================================

private float mMaxVelocityX;
private float mMaxVelocityY;
private float mMaxZoomFactorChange;
protected float mMaxVelocityX;
protected float mMaxVelocityY;
protected float mMaxZoomFactorChange;

private float mTargetCenterX;
private float mTargetCenterY;
protected float mTargetCenterX;
protected float mTargetCenterY;

private float mTargetZoomFactor;
protected float mTargetZoomFactor;

// ===========================================================
// Constructors
Expand Down

0 comments on commit c74cab7

Please sign in to comment.