├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── PlayButton_Shorts.mp4 ├── README.ko.md ├── README.md ├── README.zh-CN.md ├── img ├── eig.png ├── fiv.png ├── fou.png ├── fst.png ├── sec.png ├── sev.png ├── six.png ├── temp.md └── tre.png └── src ├── LolPlayButton.sln ├── LolPlayButton ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Images │ └── logo.png ├── LolPlayButton.csproj ├── MainWindow.xaml └── MainWindow.xaml.cs └── VickyPlayButton ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Images └── logo.png ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── VickyPlayButton.csproj └── VickyPlayButton.csproj.user /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [vickyqu115] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/LICENSE -------------------------------------------------------------------------------- /PlayButton_Shorts.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/PlayButton_Shorts.mp4 -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /img/eig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/img/eig.png -------------------------------------------------------------------------------- /img/fiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/img/fiv.png -------------------------------------------------------------------------------- /img/fou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/img/fou.png -------------------------------------------------------------------------------- /img/fst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/img/fst.png -------------------------------------------------------------------------------- /img/sec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/img/sec.png -------------------------------------------------------------------------------- /img/sev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/img/sev.png -------------------------------------------------------------------------------- /img/six.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/img/six.png -------------------------------------------------------------------------------- /img/temp.md: -------------------------------------------------------------------------------- 1 | t 2 | -------------------------------------------------------------------------------- /img/tre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/img/tre.png -------------------------------------------------------------------------------- /src/LolPlayButton.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/LolPlayButton.sln -------------------------------------------------------------------------------- /src/LolPlayButton/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/LolPlayButton/App.xaml -------------------------------------------------------------------------------- /src/LolPlayButton/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/LolPlayButton/App.xaml.cs -------------------------------------------------------------------------------- /src/LolPlayButton/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/LolPlayButton/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/LolPlayButton/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/LolPlayButton/Images/logo.png -------------------------------------------------------------------------------- /src/LolPlayButton/LolPlayButton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/LolPlayButton/LolPlayButton.csproj -------------------------------------------------------------------------------- /src/LolPlayButton/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/LolPlayButton/MainWindow.xaml -------------------------------------------------------------------------------- /src/LolPlayButton/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/LolPlayButton/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/VickyPlayButton/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/VickyPlayButton/App.xaml -------------------------------------------------------------------------------- /src/VickyPlayButton/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/VickyPlayButton/App.xaml.cs -------------------------------------------------------------------------------- /src/VickyPlayButton/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/VickyPlayButton/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/VickyPlayButton/Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/VickyPlayButton/Images/logo.png -------------------------------------------------------------------------------- /src/VickyPlayButton/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/VickyPlayButton/MainWindow.xaml -------------------------------------------------------------------------------- /src/VickyPlayButton/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/VickyPlayButton/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/VickyPlayButton/VickyPlayButton.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/VickyPlayButton/VickyPlayButton.csproj -------------------------------------------------------------------------------- /src/VickyPlayButton/VickyPlayButton.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JamesnetGroup/riotplaybutton/HEAD/src/VickyPlayButton/VickyPlayButton.csproj.user --------------------------------------------------------------------------------