memory setup

This commit is contained in:
Asuro
2025-02-09 03:01:43 +01:00
parent fbed568fae
commit df752065af
12 changed files with 227 additions and 80 deletions

View File

@@ -1,10 +1,12 @@
#pragma once
#include "../engine/Shared.h"
#define DLLEXPORT __declspec(dllexport)
namespace Game
{
DLLEXPORT void Setup(void* window);
DLLEXPORT void Setup(SharedData& shared);
DLLEXPORT void Update();
DLLEXPORT void Shutdown();
}