mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 10:28:34 +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;
|
|
}
|