mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-14 09:38:30 +00:00
13 lines
135 B
SourcePawn
13 lines
135 B
SourcePawn
native CloseHandle(Handle:this);
|
|
|
|
methodmap Handle {
|
|
public Close = CloseHandle;
|
|
};
|
|
|
|
public main()
|
|
{
|
|
new Handle:x[2];
|
|
|
|
x.Close();
|
|
}
|