Initial public release of rem-essentials

This commit is contained in:
2026-08-11 16:48:50 +02:00
commit d611924a5e
161 changed files with 9792 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
struct StrBuffer
{
LPWSTR str;
size_t capacity;
};
enum NameType : DWORD
{
FactionAndDesignation = 0,
PilotName = 1,
Unk = 2
};
void InitPilotNamesFix();