mirror of
https://github.com/eaglerforge/EaglerForgeInjector
synced 2025-07-25 15:06:56 -09:00
13 lines
343 B
JavaScript
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) {
|
|
|
|
} |