mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 10:28:34 +00:00
14 lines
154 B
SourcePawn
14 lines
154 B
SourcePawn
methodmap Handle __nullable__
|
|
{
|
|
public native Handle();
|
|
public native ~Handle();
|
|
};
|
|
|
|
enum Crab {};
|
|
|
|
public t()
|
|
{
|
|
Crab egg = new Crab();
|
|
delete egg;
|
|
}
|