mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-14 01:28:28 +00:00
11 lines
119 B
SourcePawn
11 lines
119 B
SourcePawn
native CloseHandle(Handle:this);
|
|
|
|
methodmap Handle {
|
|
public Close = CloseHandle;
|
|
};
|
|
|
|
public main()
|
|
{
|
|
main.Close();
|
|
}
|