mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
9 lines
339 B
C
9 lines
339 B
C
#ifndef RENDERUTILS_H
|
|
#define RENDERUTILS_H
|
|
#include "mathlib/vector.h"
|
|
|
|
void DrawAngledBox(const Vector3D& origin, const QAngle& angles, Vector3D mins, Vector3D maxs, int r, int g, int b, int a, bool throughSolid);
|
|
void RenderCapsule(const Vector3D& vStart, const Vector3D& vEnd, const float& flRadius, Color c);
|
|
|
|
#endif // RENDERUTILS_H
|