| 52 | } |
| 53 | |
| 54 | void ckpt_progress_begin(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 55 | { |
| 56 | const ScriptArgs args(Parser, Param, NumArgs, "progress_begin"); |
| 57 | const size_t layer = layerArg(args); |
| 58 | const char* label = args.strOr(1, ""); |
| 59 | ScriptConsole::get().beginLayer(layer, label, args.num(2)); |
| 60 | } |
| 61 | |
| 62 | void ckpt_progress_set(struct ParseState* Parser, struct Value* ReturnValue, struct Value** Param, int NumArgs) |
| 63 | { |
nothing calls this directly
no test coverage detected