├── .gitignore ├── Flies.sln ├── Flies ├── App.config ├── App.xaml ├── App.xaml.cs ├── Flies.csproj ├── Fly.cs ├── Fly.ico ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ ├── Settings.settings │ └── app.manifest └── Resources │ └── Fly.png ├── LICENSE ├── README.md └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/.gitignore -------------------------------------------------------------------------------- /Flies.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies.sln -------------------------------------------------------------------------------- /Flies/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/App.config -------------------------------------------------------------------------------- /Flies/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/App.xaml -------------------------------------------------------------------------------- /Flies/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/App.xaml.cs -------------------------------------------------------------------------------- /Flies/Flies.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Flies.csproj -------------------------------------------------------------------------------- /Flies/Fly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Fly.cs -------------------------------------------------------------------------------- /Flies/Fly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Fly.ico -------------------------------------------------------------------------------- /Flies/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/MainWindow.xaml -------------------------------------------------------------------------------- /Flies/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Flies/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Flies/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Flies/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Properties/Resources.resx -------------------------------------------------------------------------------- /Flies/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Flies/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Properties/Settings.settings -------------------------------------------------------------------------------- /Flies/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Properties/app.manifest -------------------------------------------------------------------------------- /Flies/Resources/Fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/Flies/Resources/Fly.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlyTechVideos/Flies/HEAD/screenshot.png --------------------------------------------------------------------------------