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