public ScreenWorld(World world)
     : base(null)
 {
     this.world = world;
     player = new PlayerCreative(new Vector2(Tile.Tile_Width * 20, Tile.Tile_Width * 18), "technorover");
     world.entities.Add(player);
 }
 public void putItemInHand(Player player)
 {
 }