diff --git a/SpotifyAPI/SpoitfyLocalAPI/SpotifyMusicHandler.cs b/SpotifyAPI/SpoitfyLocalAPI/SpotifyMusicHandler.cs index 243c39e7..23d024ef 100644 --- a/SpotifyAPI/SpoitfyLocalAPI/SpotifyMusicHandler.cs +++ b/SpotifyAPI/SpoitfyLocalAPI/SpotifyMusicHandler.cs @@ -62,6 +62,14 @@ namespace SpotifyAPI.SpotifyLocalAPI rh.SendPlayRequest(uri); } /// + /// Adds a Spotify URI to the Queue + /// + /// The Spotify URI. Can be checked with + public void AddToQueue(String uri) + { + rh.SendQueueRequest(uri); + } + /// /// Checks if the current "Track" is an Advert /// /// True if it's an Advert, false if not diff --git a/SpotifyLocalAPIExample/SpotifyAPIExample.csproj b/SpotifyLocalAPIExample/SpotifyLocalAPIExample.csproj similarity index 100% rename from SpotifyLocalAPIExample/SpotifyAPIExample.csproj rename to SpotifyLocalAPIExample/SpotifyLocalAPIExample.csproj