Feat: Allow Launching from launchers

This commit is contained in:
2026-05-27 08:21:56 -04:00
parent 77b5b16de4
commit 9795b96e8f
3 changed files with 180 additions and 32 deletions
@@ -0,0 +1,18 @@
#pragma once
#include <string>
class Windows64Minecraft {
public:
static bool IsOfflineMode();
static std::string GetAuthenticationTicket();
static bool IsExternalLauncher();
struct Win64LaunchOptions
{
int screenMode;
bool fullscreen;
bool username;
bool token;
};
};