mirror of
https://github.com/asherkin/accelerator.git
synced 2025-12-06 18:08:30 +00:00
17 lines
321 B
C++
17 lines
321 B
C++
#ifndef _INCLUDE_FORWARDS_H_
|
|
#define _INCLUDE_FORWARDS_H_
|
|
|
|
namespace extforwards
|
|
{
|
|
// Initialize the sourcepawn forwards.
|
|
void Init();
|
|
// Shutdown the sourcepawn forwards.
|
|
void Shutdown();
|
|
// Calls the on done uploadind forward. (thread safe)
|
|
void CallOnDoneUploadingForward();
|
|
}
|
|
|
|
|
|
|
|
#endif // !_INCLUDE_FORWARDS_H_
|