mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 18:38:37 +00:00
11 lines
152 B
SourcePawn
11 lines
152 B
SourcePawn
native Handle:CreateHandle();
|
|
|
|
methodmap Handle {
|
|
public Handle() = CreateHandle;
|
|
};
|
|
|
|
public main() {
|
|
new Handle:handle = Handle();
|
|
delete handle;
|
|
}
|