This commit is contained in:
SimonFJ20 2025-01-22 14:09:27 +01:00
parent 00298d6d83
commit e8cfd059cc

22
compiler/main.ts Normal file
View File

@ -0,0 +1,22 @@
type Pack = {
rootMod: Mod;
};
type Mod = null;
interface PackEmitter {
emit(pack: Pack): void;
}
class PackCompiler {
public constructor(
private entryFilePath: string,
private emitter: PackEmitter,
) {}
public compile() {
}
}
class ModResolver {
}