public WoodcuttingHandler(Vector2 position)
 {       
     player = Main.game.player;
     chatbox = Main.game.chat;
     Level = Main.game.scen;
     Tree_Position = position;
     Tree_Area = new Rectangle((int)position.X, (int)position.Y, 80, 80);
 }
 public CombatHandler()
 {
     player = Main.game.player;
     enemy = Main.game.enemy;
     chatBox = Main.game.chat;
 }