import Setting from "../../Setting"; export default class TsPathOut { public static get genCodePath() { return Setting.Options.genCodeMainPath + "ts_layabox2/"; } public static get GeneratesPath() { return this.genCodePath + "Generates/"; } public static get ExtendsPath() { return this.genCodePath + "Extends/"; } public static get ComponentStruct(): string { return this.GeneratesPath + "{0}/{1}Struct.ts"; } public static get ComponentExtend(): string { return this.ExtendsPath + "{0}/{1}.ts"; } public static get Binder(): string { return this.GeneratesPath + "{0}/{1}.ts"; } public static get FguiPackageNames(): string { return this.GeneratesPath + "FguiPackageNames.ts"; } public static get FguiBinderList(): string { return this.GeneratesPath + "FguiBinderList.ts"; } public static get FguiSoundKey(): string { return this.GeneratesPath + "FguiSoundKey.ts"; } }