Second pass idLib integration.

This commit is contained in:
Justin Marshall
2026-08-08 19:30:03 -07:00
parent 55a14323f2
commit 1b718f17f6
114 changed files with 9696 additions and 331 deletions
+14
View File
@@ -0,0 +1,14 @@
#pragma once
#include "idlib/math/vector.h"
// Exact member order recovered as IDA local type 13212.
class idCylinder {
public:
idVec3 origin;
float halfHeight;
float radius;
};
static_assert(sizeof(idCylinder) == 20, "Recovered idCylinder ABI changed");