20 lines
230 B
C++
20 lines
230 B
C++
|
|
/*
|
|
*
|
|
* Valve surface drawing header file.
|
|
* Use the init function to load this!
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace modules {
|
|
namespace csgo {
|
|
namespace valvesurface {
|
|
|
|
void Init();
|
|
|
|
}
|
|
} // namespace csgo
|
|
} // namespace modules
|