├── .gitattributes ├── .gitignore ├── FortniteLauncher ├── App.xaml ├── App.xaml.cs ├── Content │ └── Texture │ │ ├── Branding │ │ └── Eon.ico │ │ ├── Icons │ │ ├── IC_Download.svg │ │ ├── IC_Leaderboard.svg │ │ ├── IC_Play.svg │ │ ├── IC_ServerStatus.svg │ │ └── IC_Shop.svg │ │ └── UI │ │ ├── T_Banner.png │ │ ├── T_BattleBus.png │ │ ├── T_Discord.png │ │ ├── T_Leaderboard.png │ │ └── T_Tiktok.png ├── Fortnite Launcher.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs └── Source │ ├── Content │ ├── API │ │ └── Authentication │ │ │ └── LoginEndpoint.cs │ └── Downloads │ │ ├── ModDownloader.cs │ │ ├── RedirectHandler.cs │ │ └── RequiredFilesDownloader.cs │ ├── Core │ ├── Configuration │ │ ├── AppConfig.cs │ │ ├── Definitions.cs │ │ ├── GlobalSettings.cs │ │ ├── ProjectDefinitions.cs │ │ └── UserSettings.cs │ └── Services │ │ ├── DialogService.cs │ │ ├── DownloadService.cs │ │ ├── LaunchStatusService.cs │ │ ├── NavigationService.cs │ │ └── PathService.cs │ ├── Game │ ├── AntiCheat │ │ ├── EasyAntiCheat.cs │ │ └── PakIntegrityChecker.cs │ ├── Client │ │ ├── GameLauncher.cs │ │ ├── ProcessHelper.cs │ │ └── ProcessManager.cs │ └── Settings │ │ ├── ExclusionManager.cs │ │ └── GameUserSettings.cs │ ├── Platform │ └── Discord │ │ └── DiscordRichPresence.cs │ └── UI │ ├── Controls │ ├── CustomMessageBox.cs │ └── CustomProgressRing.cs │ └── Pages │ ├── Authentication │ ├── LoginPage.xaml │ └── LoginPage.xaml.cs │ ├── Downloads │ ├── DownloadsPage.xaml │ └── DownloadsPage.xaml.cs │ ├── Leaderboard │ ├── LeaderboardPage.xaml │ └── LeaderboardPage.xaml.cs │ ├── Main │ ├── MainShellPage.xaml │ └── MainShellPage.xaml.cs │ ├── Play │ ├── PlayPage.xaml │ └── PlayPage.xaml.cs │ ├── ServerStatus │ ├── ServerStatusPage.xaml │ └── ServerStatusPage.xaml.cs │ ├── Settings │ ├── SettingsPage.xaml │ └── SettingsPage.xaml.cs │ └── Shop │ ├── ItemShopPage.xaml │ └── ItemShopPage.xaml.cs ├── LICENSE.md ├── OG Fortnite Launcher.sln └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /FortniteLauncher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/App.xaml -------------------------------------------------------------------------------- /FortniteLauncher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/App.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/Branding/Eon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/Branding/Eon.ico -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/Icons/IC_Download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/Icons/IC_Download.svg -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/Icons/IC_Leaderboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/Icons/IC_Leaderboard.svg -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/Icons/IC_Play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/Icons/IC_Play.svg -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/Icons/IC_ServerStatus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/Icons/IC_ServerStatus.svg -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/Icons/IC_Shop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/Icons/IC_Shop.svg -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/UI/T_Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/UI/T_Banner.png -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/UI/T_BattleBus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/UI/T_BattleBus.png -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/UI/T_Discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/UI/T_Discord.png -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/UI/T_Leaderboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/UI/T_Leaderboard.png -------------------------------------------------------------------------------- /FortniteLauncher/Content/Texture/UI/T_Tiktok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Content/Texture/UI/T_Tiktok.png -------------------------------------------------------------------------------- /FortniteLauncher/Fortnite Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Fortnite Launcher.csproj -------------------------------------------------------------------------------- /FortniteLauncher/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/MainWindow.xaml -------------------------------------------------------------------------------- /FortniteLauncher/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/MainWindow.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Content/API/Authentication/LoginEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Content/API/Authentication/LoginEndpoint.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Content/Downloads/ModDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Content/Downloads/ModDownloader.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Content/Downloads/RedirectHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Content/Downloads/RedirectHandler.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Content/Downloads/RequiredFilesDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Content/Downloads/RequiredFilesDownloader.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Configuration/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Configuration/AppConfig.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Configuration/Definitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Configuration/Definitions.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Configuration/GlobalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Configuration/GlobalSettings.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Configuration/ProjectDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Configuration/ProjectDefinitions.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Configuration/UserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Configuration/UserSettings.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Services/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Services/DialogService.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Services/DownloadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Services/DownloadService.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Services/LaunchStatusService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Services/LaunchStatusService.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Services/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Services/NavigationService.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Core/Services/PathService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Core/Services/PathService.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Game/AntiCheat/EasyAntiCheat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Game/AntiCheat/EasyAntiCheat.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Game/AntiCheat/PakIntegrityChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Game/AntiCheat/PakIntegrityChecker.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Game/Client/GameLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Game/Client/GameLauncher.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Game/Client/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Game/Client/ProcessHelper.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Game/Client/ProcessManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Game/Client/ProcessManager.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Game/Settings/ExclusionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Game/Settings/ExclusionManager.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Game/Settings/GameUserSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Game/Settings/GameUserSettings.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/Platform/Discord/DiscordRichPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/Platform/Discord/DiscordRichPresence.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Controls/CustomMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Controls/CustomMessageBox.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Controls/CustomProgressRing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Controls/CustomProgressRing.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Authentication/LoginPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Authentication/LoginPage.xaml -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Authentication/LoginPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Authentication/LoginPage.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Downloads/DownloadsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Downloads/DownloadsPage.xaml -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Downloads/DownloadsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Downloads/DownloadsPage.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Leaderboard/LeaderboardPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Leaderboard/LeaderboardPage.xaml -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Leaderboard/LeaderboardPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Leaderboard/LeaderboardPage.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Main/MainShellPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Main/MainShellPage.xaml -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Main/MainShellPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Main/MainShellPage.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Play/PlayPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Play/PlayPage.xaml -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Play/PlayPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Play/PlayPage.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/ServerStatus/ServerStatusPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/ServerStatus/ServerStatusPage.xaml -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/ServerStatus/ServerStatusPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/ServerStatus/ServerStatusPage.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Settings/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Settings/SettingsPage.xaml -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Settings/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Settings/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Shop/ItemShopPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Shop/ItemShopPage.xaml -------------------------------------------------------------------------------- /FortniteLauncher/Source/UI/Pages/Shop/ItemShopPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/FortniteLauncher/Source/UI/Pages/Shop/ItemShopPage.xaml.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OG Fortnite Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/OG Fortnite Launcher.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EonOGFN/Eon-Launcher/HEAD/README.md --------------------------------------------------------------------------------