diff --git a/Shared/Camera.cs b/Shared/Camera.cs index 8d5031a..4e98729 100644 --- a/Shared/Camera.cs +++ b/Shared/Camera.cs @@ -13,7 +13,6 @@ namespace SemiColinGames { public void Update(GameTime time, Point player) { int diff = player.X - bbox.Center.X; - // TODO: use the actual center of the player's bbox. if (Math.Abs(diff) > 16) { bbox.Offset((int) (diff * 0.1), 0); }