mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-08 19:08:35 +00:00
11 lines
118 B
SourcePawn
11 lines
118 B
SourcePawn
methodmap Handle __nullable__
|
|
{
|
|
public native ~Handle();
|
|
};
|
|
|
|
public t()
|
|
{
|
|
Handle egg = new Handle();
|
|
delete egg;
|
|
}
|