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