66f7ff9b8e
Signed-off-by: aixxe <me@aixxe.net>
10 lines
265 B
C++
10 lines
265 B
C++
#pragma once
|
|
|
|
class IVDebugOverlay {
|
|
public:
|
|
bool ScreenPosition(const Vector& world, Vector& screen) {
|
|
return GetVirtualFunction<int(*)(IVDebugOverlay*, const Vector&, Vector&)>(this, 9)(this, world, screen) == 0;
|
|
}
|
|
};
|
|
|
|
extern IVDebugOverlay* debugoverlay; |