├── ## Copilot.md ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .stylelintignore ├── .stylelintrc.json ├── .yarnrc.yml ├── CharaHandle ├── Modules │ └── NameNPC.js ├── SC2Files │ └── NpcHookerHandle.js └── module.json ├── EventHandle ├── LocationStageTemplate.twee ├── Modules │ ├── 00_SceneData.js │ ├── 00_SceneSystem.js │ ├── 00_SeriesData.js │ ├── 01_iEventMain.js │ ├── 02_iEventHandler.js │ ├── 03_iEventUtils.js │ └── 04_ActionHandler.js ├── SC2Files │ ├── 2_sugarcubeconfig.js │ ├── eventmacros.js │ └── zz_SFE_globalProcess.js ├── Twees │ └── EventLoop.twee ├── module.json └── registsample.js ├── LocationHandle └── module.json ├── MainFramework ├── MLPatch │ └── patchpassage.js ├── Main │ ├── 0_Simplewidget.js │ └── 0_lib │ │ ├── jquery-ui.min.js │ │ ├── selectcase.js │ │ └── util.js ├── Modules │ ├── 00_iModManager.js │ ├── applyZone.js │ ├── customUI.js │ ├── domTool.js │ └── language.js ├── SC2Files │ ├── 0_loadconfig.js │ ├── 1_macromodif.js │ ├── SimpleContents.js │ ├── SimpleMacro.js │ ├── TimeHandle.js │ └── z_globalProcess.js ├── css │ ├── general.css │ └── jquery-ui.css ├── images │ ├── ui-bg_glass_20_555555_1x400.png │ ├── ui-bg_glass_40_0078a3_1x400.png │ ├── ui-bg_glass_40_ffc73d_1x400.png │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ ├── ui-bg_inset-soft_25_000000_1x100.png │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_4b8e0b_256x240.png │ ├── ui-icons_a83300_256x240.png │ ├── ui-icons_cccccc_256x240.png │ └── ui-icons_ffffff_256x240.png ├── module.json └── simpleframewidget.twee ├── README.md ├── Readme ├── CustomUIReadme.md ├── HeaderMessageGuide.md ├── InvUtil.md ├── SFWidgets_readme.twee ├── SelectCaseReadMe.md ├── Simple Inventory.md ├── SimpleFramework_Main.md ├── TimeEventGuide.md └── UtilJsReadMe.md ├── Simple Inventory ├── SC2 │ └── SFInvSetup.js ├── boot.json └── modules │ ├── 0SFStorage.js │ ├── InvUI.js │ ├── InvUtil.js │ ├── SFInvMain.js │ ├── SFItem.js │ └── SFRecipies.js ├── boot.json ├── bootTemplete.json ├── docs ├── en │ ├── SimpleWidgetOverview.html │ ├── all_the_beginning.html │ ├── blank.html │ ├── customUI.html │ ├── domtool_apibook.html │ ├── eventsystem_cycleknowlege.html │ ├── eventsystem_regist.html │ ├── headerMsg.html │ ├── imod_api_list.html │ ├── module_registration_management.html │ ├── name_npc_class_overview.html │ ├── npc_management_methods.html │ ├── overview_and_registration.html │ └── simple_custom_contents.html ├── index.html ├── style.css ├── test.html └── zh │ ├── SimpleWidgetOverview.html │ ├── all_the_beginning.html │ ├── blank.html │ ├── customUI.html │ ├── domtool_apibook.html │ ├── eventsystem_cycleknowlege.html │ ├── eventsystem_regist.html │ ├── headerMsg.html │ ├── imod_api_list.html │ ├── module_registration_management.html │ ├── name_npc_class_overview.html │ ├── npc_management_methods.html │ ├── overview_and_registration.html │ └── simple_custom_contents.html ├── package.json ├── packrule.json ├── script ├── cli.ts └── pack.ts ├── simple new content ├── boot.json ├── eventTest.twee ├── newContent.js ├── newEvent.js ├── newItems.js ├── newNPC.js ├── test.js ├── test.twee └── testStage.twee ├── t3lt.twee-config.yml └── yarn.lock /## Copilot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/## Copilot.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/.stylelintignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /CharaHandle/Modules/NameNPC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/CharaHandle/Modules/NameNPC.js -------------------------------------------------------------------------------- /CharaHandle/SC2Files/NpcHookerHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/CharaHandle/SC2Files/NpcHookerHandle.js -------------------------------------------------------------------------------- /CharaHandle/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "order": 2 3 | } -------------------------------------------------------------------------------- /EventHandle/LocationStageTemplate.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/LocationStageTemplate.twee -------------------------------------------------------------------------------- /EventHandle/Modules/00_SceneData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/Modules/00_SceneData.js -------------------------------------------------------------------------------- /EventHandle/Modules/00_SceneSystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/Modules/00_SceneSystem.js -------------------------------------------------------------------------------- /EventHandle/Modules/00_SeriesData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/Modules/00_SeriesData.js -------------------------------------------------------------------------------- /EventHandle/Modules/01_iEventMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/Modules/01_iEventMain.js -------------------------------------------------------------------------------- /EventHandle/Modules/02_iEventHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/Modules/02_iEventHandler.js -------------------------------------------------------------------------------- /EventHandle/Modules/03_iEventUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/Modules/03_iEventUtils.js -------------------------------------------------------------------------------- /EventHandle/Modules/04_ActionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/Modules/04_ActionHandler.js -------------------------------------------------------------------------------- /EventHandle/SC2Files/2_sugarcubeconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/SC2Files/2_sugarcubeconfig.js -------------------------------------------------------------------------------- /EventHandle/SC2Files/eventmacros.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/SC2Files/eventmacros.js -------------------------------------------------------------------------------- /EventHandle/SC2Files/zz_SFE_globalProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/SC2Files/zz_SFE_globalProcess.js -------------------------------------------------------------------------------- /EventHandle/Twees/EventLoop.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/Twees/EventLoop.twee -------------------------------------------------------------------------------- /EventHandle/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "order": 1 3 | } -------------------------------------------------------------------------------- /EventHandle/registsample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/EventHandle/registsample.js -------------------------------------------------------------------------------- /LocationHandle/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "order": 3 3 | } -------------------------------------------------------------------------------- /MainFramework/MLPatch/patchpassage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/MLPatch/patchpassage.js -------------------------------------------------------------------------------- /MainFramework/Main/0_Simplewidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Main/0_Simplewidget.js -------------------------------------------------------------------------------- /MainFramework/Main/0_lib/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Main/0_lib/jquery-ui.min.js -------------------------------------------------------------------------------- /MainFramework/Main/0_lib/selectcase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Main/0_lib/selectcase.js -------------------------------------------------------------------------------- /MainFramework/Main/0_lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Main/0_lib/util.js -------------------------------------------------------------------------------- /MainFramework/Modules/00_iModManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Modules/00_iModManager.js -------------------------------------------------------------------------------- /MainFramework/Modules/applyZone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Modules/applyZone.js -------------------------------------------------------------------------------- /MainFramework/Modules/customUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Modules/customUI.js -------------------------------------------------------------------------------- /MainFramework/Modules/domTool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Modules/domTool.js -------------------------------------------------------------------------------- /MainFramework/Modules/language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/Modules/language.js -------------------------------------------------------------------------------- /MainFramework/SC2Files/0_loadconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/SC2Files/0_loadconfig.js -------------------------------------------------------------------------------- /MainFramework/SC2Files/1_macromodif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/SC2Files/1_macromodif.js -------------------------------------------------------------------------------- /MainFramework/SC2Files/SimpleContents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/SC2Files/SimpleContents.js -------------------------------------------------------------------------------- /MainFramework/SC2Files/SimpleMacro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/SC2Files/SimpleMacro.js -------------------------------------------------------------------------------- /MainFramework/SC2Files/TimeHandle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/SC2Files/TimeHandle.js -------------------------------------------------------------------------------- /MainFramework/SC2Files/z_globalProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/SC2Files/z_globalProcess.js -------------------------------------------------------------------------------- /MainFramework/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/css/general.css -------------------------------------------------------------------------------- /MainFramework/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/css/jquery-ui.css -------------------------------------------------------------------------------- /MainFramework/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /MainFramework/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /MainFramework/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /MainFramework/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /MainFramework/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /MainFramework/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /MainFramework/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /MainFramework/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /MainFramework/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /MainFramework/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /MainFramework/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /MainFramework/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /MainFramework/module.json: -------------------------------------------------------------------------------- 1 | { 2 | "oder": 0 3 | } -------------------------------------------------------------------------------- /MainFramework/simpleframewidget.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/MainFramework/simpleframewidget.twee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/README.md -------------------------------------------------------------------------------- /Readme/CustomUIReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/CustomUIReadme.md -------------------------------------------------------------------------------- /Readme/HeaderMessageGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/HeaderMessageGuide.md -------------------------------------------------------------------------------- /Readme/InvUtil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/InvUtil.md -------------------------------------------------------------------------------- /Readme/SFWidgets_readme.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/SFWidgets_readme.twee -------------------------------------------------------------------------------- /Readme/SelectCaseReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/SelectCaseReadMe.md -------------------------------------------------------------------------------- /Readme/Simple Inventory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/Simple Inventory.md -------------------------------------------------------------------------------- /Readme/SimpleFramework_Main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/SimpleFramework_Main.md -------------------------------------------------------------------------------- /Readme/TimeEventGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/TimeEventGuide.md -------------------------------------------------------------------------------- /Readme/UtilJsReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Readme/UtilJsReadMe.md -------------------------------------------------------------------------------- /Simple Inventory/SC2/SFInvSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Simple Inventory/SC2/SFInvSetup.js -------------------------------------------------------------------------------- /Simple Inventory/boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Simple Inventory/boot.json -------------------------------------------------------------------------------- /Simple Inventory/modules/0SFStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Simple Inventory/modules/0SFStorage.js -------------------------------------------------------------------------------- /Simple Inventory/modules/InvUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Simple Inventory/modules/InvUI.js -------------------------------------------------------------------------------- /Simple Inventory/modules/InvUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Simple Inventory/modules/InvUtil.js -------------------------------------------------------------------------------- /Simple Inventory/modules/SFInvMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Simple Inventory/modules/SFInvMain.js -------------------------------------------------------------------------------- /Simple Inventory/modules/SFItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Simple Inventory/modules/SFItem.js -------------------------------------------------------------------------------- /Simple Inventory/modules/SFRecipies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/Simple Inventory/modules/SFRecipies.js -------------------------------------------------------------------------------- /boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/boot.json -------------------------------------------------------------------------------- /bootTemplete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/bootTemplete.json -------------------------------------------------------------------------------- /docs/en/SimpleWidgetOverview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/SimpleWidgetOverview.html -------------------------------------------------------------------------------- /docs/en/all_the_beginning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/all_the_beginning.html -------------------------------------------------------------------------------- /docs/en/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/blank.html -------------------------------------------------------------------------------- /docs/en/customUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/customUI.html -------------------------------------------------------------------------------- /docs/en/domtool_apibook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/domtool_apibook.html -------------------------------------------------------------------------------- /docs/en/eventsystem_cycleknowlege.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/eventsystem_cycleknowlege.html -------------------------------------------------------------------------------- /docs/en/eventsystem_regist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/eventsystem_regist.html -------------------------------------------------------------------------------- /docs/en/headerMsg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/headerMsg.html -------------------------------------------------------------------------------- /docs/en/imod_api_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/imod_api_list.html -------------------------------------------------------------------------------- /docs/en/module_registration_management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/module_registration_management.html -------------------------------------------------------------------------------- /docs/en/name_npc_class_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/name_npc_class_overview.html -------------------------------------------------------------------------------- /docs/en/npc_management_methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/npc_management_methods.html -------------------------------------------------------------------------------- /docs/en/overview_and_registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/overview_and_registration.html -------------------------------------------------------------------------------- /docs/en/simple_custom_contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/en/simple_custom_contents.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/style.css -------------------------------------------------------------------------------- /docs/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/test.html -------------------------------------------------------------------------------- /docs/zh/SimpleWidgetOverview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/SimpleWidgetOverview.html -------------------------------------------------------------------------------- /docs/zh/all_the_beginning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/all_the_beginning.html -------------------------------------------------------------------------------- /docs/zh/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/blank.html -------------------------------------------------------------------------------- /docs/zh/customUI.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/customUI.html -------------------------------------------------------------------------------- /docs/zh/domtool_apibook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/domtool_apibook.html -------------------------------------------------------------------------------- /docs/zh/eventsystem_cycleknowlege.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/eventsystem_cycleknowlege.html -------------------------------------------------------------------------------- /docs/zh/eventsystem_regist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/eventsystem_regist.html -------------------------------------------------------------------------------- /docs/zh/headerMsg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/headerMsg.html -------------------------------------------------------------------------------- /docs/zh/imod_api_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/imod_api_list.html -------------------------------------------------------------------------------- /docs/zh/module_registration_management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/module_registration_management.html -------------------------------------------------------------------------------- /docs/zh/name_npc_class_overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/name_npc_class_overview.html -------------------------------------------------------------------------------- /docs/zh/npc_management_methods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/npc_management_methods.html -------------------------------------------------------------------------------- /docs/zh/overview_and_registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/overview_and_registration.html -------------------------------------------------------------------------------- /docs/zh/simple_custom_contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/docs/zh/simple_custom_contents.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/package.json -------------------------------------------------------------------------------- /packrule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/packrule.json -------------------------------------------------------------------------------- /script/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/script/cli.ts -------------------------------------------------------------------------------- /script/pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/script/pack.ts -------------------------------------------------------------------------------- /simple new content/boot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/boot.json -------------------------------------------------------------------------------- /simple new content/eventTest.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/eventTest.twee -------------------------------------------------------------------------------- /simple new content/newContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/newContent.js -------------------------------------------------------------------------------- /simple new content/newEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/newEvent.js -------------------------------------------------------------------------------- /simple new content/newItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/newItems.js -------------------------------------------------------------------------------- /simple new content/newNPC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/newNPC.js -------------------------------------------------------------------------------- /simple new content/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/test.js -------------------------------------------------------------------------------- /simple new content/test.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/test.twee -------------------------------------------------------------------------------- /simple new content/testStage.twee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/simple new content/testStage.twee -------------------------------------------------------------------------------- /t3lt.twee-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/t3lt.twee-config.yml -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emicoto/SCMLSimpleFramework/HEAD/yarn.lock --------------------------------------------------------------------------------