mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 18:38:37 +00:00
11 lines
123 B
SourcePawn
11 lines
123 B
SourcePawn
native CloseHandle(Handle:handle);
|
|
|
|
methodmap Handle {
|
|
public Close() = CloseHandle;
|
|
};
|
|
|
|
public main()
|
|
{
|
|
main.Close();
|
|
}
|