Removed junk files. Removed unnecessary code and comments. Reorganized projects.

This commit is contained in:
2025-07-30 14:26:54 +02:00
parent 731218faa7
commit 7a232427dd
13 changed files with 423 additions and 27 deletions

View File

@@ -45,10 +45,9 @@ const char* DONATION_URL = "https://www.paypal.com/donate/?business=W92C47N3WZZZ
static void LoadFixDLL()
{
if (fixLib) return;
fixLib = LoadLibraryA("EmpireOfTheAntsCore.dll"); // ou EmpireOfTheAntsCore.dll si tu gardes le .dll
fixLib = LoadLibraryA("EmpireOfTheAntsCore.dll");
if (!fixLib) {
// Optionnel: message d'erreur ou fallback
MessageBoxA(nullptr, "Impossible to load game core dll", "Erreur", MB_OK);
return;
}