Use t6-gsc-utils as a base.

This commit is contained in:
JezuzLizard
2023-03-23 19:58:53 -07:00
parent e5b1504c1c
commit 011bb0c554
40 changed files with 2556 additions and 0 deletions

15
src/game/symbols.hpp Normal file
View File

@ -0,0 +1,15 @@
#pragma once
#define WEAK __declspec(selectany)
namespace game
{
// Functions
// Variables
namespace plutonium
{
WEAK symbol<int(const char* fmt, ...)> printf{0, 0};
}
}