Refactor of asset bundles

This commit is contained in:
Zef Hemel
2022-10-12 11:47:13 +02:00
parent 9dd94c5397
commit 4c19ab21f2
96 changed files with 6279 additions and 770 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
import { AssetBundle } from "../plugos/asset_bundle_reader.ts";
import { System } from "./system.ts";
import { AssetJson } from "./asset_bundle/bundle.ts";
export interface Manifest<HookT> {
name: string;
requiredPermissions?: string[];
assets?: string[] | AssetBundle;
assets?: string[] | AssetJson;
dependencies?: {
[key: string]: string;
};