mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-08 10:58:36 +00:00
14 lines
135 B
SourcePawn
14 lines
135 B
SourcePawn
native printnum(t);
|
|
|
|
methodmap X
|
|
{
|
|
public static int GetThing() {
|
|
return 10;
|
|
}
|
|
}
|
|
|
|
public main() {
|
|
X x;
|
|
printnum(x.GetThing());
|
|
}
|