mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-13 00:58:37 +00:00
12 lines
161 B
SourcePawn
12 lines
161 B
SourcePawn
native CloseHandle(Handle:this);
|
|
|
|
methodmap Handle {
|
|
Clone = native Handle:CloneHandle(Handle:this);
|
|
Close = CloseHandle;
|
|
};
|
|
|
|
public main()
|
|
{
|
|
main.Close();
|
|
}
|