Files
2026-08-08 19:30:03 -07:00

15 lines
271 B
C++

#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");