Add Resource Loader for iOS

This commit is contained in:
pengfei.zhou
2021-10-25 16:01:44 +08:00
committed by osborn
parent 4bd4f42f52
commit 235549eea4
40 changed files with 979 additions and 242 deletions

View File

@@ -15,9 +15,9 @@ export abstract class Resource implements Modeling {
}
}
export class FileResource extends Resource {
export class LocalResource extends Resource {
constructor(path: string) {
super("file", path);
super("local", path);
}
}