├── .gitignore ├── LICENSE ├── LyricEase.PlaybackEngine.sln ├── LyricEase.PlaybackEngine ├── ApplicationSettingsExtension.cs ├── DoxPlayer.cs ├── IPlayer.cs ├── LyricEase.PlaybackEngine.csproj ├── Methods.cs ├── Models.cs ├── PlaybackEngine.cs └── Properties │ ├── AssemblyInfo.cs │ └── LyricEase.PlaybackEngine.rd.xml └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LICENSE -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine.sln -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/ApplicationSettingsExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/ApplicationSettingsExtension.cs -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/DoxPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/DoxPlayer.cs -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/IPlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/IPlayer.cs -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/LyricEase.PlaybackEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/LyricEase.PlaybackEngine.csproj -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/Methods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/Methods.cs -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/Models.cs -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/PlaybackEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/PlaybackEngine.cs -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LyricEase.PlaybackEngine/Properties/LyricEase.PlaybackEngine.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/LyricEase.PlaybackEngine/Properties/LyricEase.PlaybackEngine.rd.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandonw3612/LyricEase.PlaybackEngine/HEAD/README.md --------------------------------------------------------------------------------