18 lines
226 B
C++
18 lines
226 B
C++
|
|
/*
|
|
*
|
|
* The header file for the interface connecting the module to the rest of
|
|
*the framework
|
|
*
|
|
*/
|
|
|
|
namespace modules {
|
|
namespace csgo {
|
|
namespace framework {
|
|
|
|
void Init();
|
|
|
|
}
|
|
} // namespace csgo
|
|
} // namespace modules
|