Browse Source

remove TODO

GitOrigin-RevId: 91ae978933
master
Colin McMillen 4 years ago
parent
commit
710d1042ab
  1. 1
      Shared/Camera.cs

1
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);
}

Loading…
Cancel
Save