| 35 | } |
| 36 | |
| 37 | s32 parse(AnimationSkeleton &s, const char *path, CompileOptions &opts) |
| 38 | { |
| 39 | RETURN_IF_FILE_MISSING(MESH_SKELETON, path, opts); |
| 40 | Buffer buf = opts.read(path); |
| 41 | return parse_internal(s, buf, opts); |
| 42 | } |
| 43 | |
| 44 | s32 parse(AnimationSkeleton &s, CompileOptions &opts) |
| 45 | { |
no test coverage detected