mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-08 19:08:35 +00:00
20 lines
185 B
SourcePawn
20 lines
185 B
SourcePawn
enum Handle:
|
|
{
|
|
}
|
|
|
|
methodmap Handle __nullable__
|
|
{
|
|
}
|
|
|
|
methodmap StringMap < Handle
|
|
{
|
|
}
|
|
|
|
native Log(const char[] fmt, any:...)
|
|
|
|
public main()
|
|
{
|
|
StringMap f
|
|
Log("hello %d", f != null)
|
|
}
|