Files
2026-07-07 17:17:27 +02:00

19 lines
350 B
C++

#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 password;
bool token;
};
};