├── .gitignore ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Assets ├── OFGB.png └── icon.ico ├── LICENSE ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── OFGB.csproj ├── OFGB.sln ├── README.md └── dark.xaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/.gitignore -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /Assets/OFGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/Assets/OFGB.png -------------------------------------------------------------------------------- /Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/Assets/icon.ico -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/LICENSE -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /OFGB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/OFGB.csproj -------------------------------------------------------------------------------- /OFGB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/OFGB.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/README.md -------------------------------------------------------------------------------- /dark.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xM4ddy/OFGB/HEAD/dark.xaml --------------------------------------------------------------------------------