Added back the crosshair

This commit is contained in:
2020-04-22 11:43:46 -06:00
parent 85af72cfa1
commit 042d350877
5 changed files with 28 additions and 14 deletions

View File

@@ -38,7 +38,7 @@ namespace Collector
_cam.LookAt(new Vector2(Player.X,Player.Y));
_spriteBatch = new SpriteBatch(GraphicsDevice);
_mouse = new Mouse(Content,_spriteBatch);
_mouse = new Mouse(Content,_spriteBatch,_cam);
_inputController = new InputController(_player,_mouse,_cam,_spriteBatch,Content);
WorldRenderer = new WorldRenderer(_mouse,_inputController,_player,_spriteBatch,this,_cam);
}