Return the closure
| 470 | |
| 471 | // Return the closure |
| 472 | hx::Object *ScriptCallable::runObject(CppiaCtx *ctx) |
| 473 | { |
| 474 | return createClosure(ctx,this); |
| 475 | } |
| 476 | |
| 477 | const char *ScriptCallable::getName() { return "ScriptCallable"; } |
| 478 | String ScriptCallable::runString(CppiaCtx *ctx) { return HX_CSTRING("#function"); } |