sourcemod/sourcepawn/compiler/tests/ok-inline-methods.sp
2014-07-05 01:08:14 -07:00

14 lines
184 B
SourcePawn

methodmap Crab {
public Crab(int n) {
return Crab:n;
}
public int Value() {
return _:this;
}
};
public main() {
new Crab:crab = Crab(5);
return crab.Value();
}