sourcemod/sourcepawn/compiler/tests/ok-call-static-method.sp
2014-12-12 10:10:46 -08:00

13 lines
129 B
SourcePawn

native printnum(t);
methodmap X
{
public static int GetThing() {
return 10;
}
}
public main() {
printnum(X.GetThing());
}