EaglerForgeInjector/patches.js
2024-10-02 14:39:56 +08:00

13 lines
343 B
JavaScript

class PatchesRegistry {
static patchedEventNames = []
static patchedEventNames = []
static getEventInjectorCode() {
return globalThis.modapi_specialevents = "[" + PatchesRegistry.patchedEventNames.flatMap(x=>`\`${x}\``).join(",") + "]"
}
}
function addPatch(params) {
}
function addSpecialEvent(eventName) {
}