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

15 lines
299 B
C++

#pragma once
#include "surface.h"
class idSurface_Polytope : public idSurface {
public:
idSurface_Polytope() = default;
~idSurface_Polytope() = default;
};
#if INTPTR_MAX == INT32_MAX
static_assert(sizeof(idSurface_Polytope) == 64,
"Recovered idSurface_Polytope ABI changed");
#endif