This commit is contained in:
Asuro
2025-02-07 00:32:38 +01:00
parent 445844bb6d
commit 3be734ae2f
16 changed files with 193 additions and 32 deletions

9
src/game/Setup.h Normal file
View File

@@ -0,0 +1,9 @@
#pragma once
#define DLLEXPORT __declspec(dllexport)
namespace Game
{
DLLEXPORT void Setup(void* window);
DLLEXPORT void Update();
}