20 lines
207 B
C++
20 lines
207 B
C++
|
|
/*
|
|
*
|
|
* Valve surface drawing header file.
|
|
* Use the init function to load this!
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if defined(CATHOOK_GFX_SURFACE)
|
|
|
|
namespace modules::source::valvesurface {
|
|
|
|
void Init();
|
|
|
|
}
|
|
|
|
#endif
|