Initial public release of rem-essentials

This commit is contained in:
Nekura
2026-08-11 16:48:50 +02:00
commit 59d55f675c
161 changed files with 9792 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#pragma once
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
namespace shippreviewscroll
{
struct ShipPreviewParent
{
DWORD vftable;
};
struct ShipPreviewWindow
{
DWORD vftable;
ShipPreviewParent* parent;
BYTE x08[0x3E4];
float zoomLevel; // 0x3EC
};
void init();
}