// Make a new tile
        public Tile(Level l)
        {
            this.Level = l;

            // Initialize the variables for our Tile
            Initialize();
        }
        // Creates the player object
        public Player(Level l)
        {
            this.Level = l;

            Initialize();
        }