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