mirror of
https://github.com/FullScreenShenanigans/ModAttachr.git
synced 2026-08-12 02:18:09 -07:00
30 lines
571 B
TypeScript
Executable File
30 lines
571 B
TypeScript
Executable File
/**
|
|
* Event names for mods.
|
|
*/
|
|
export interface IEventNames {
|
|
/*
|
|
* Key for event when a mod is enabled.
|
|
*/
|
|
onModEnable: string;
|
|
|
|
/*
|
|
* Key for event when a mod is disabled.
|
|
*/
|
|
onModDisable: string;
|
|
}
|
|
|
|
/**
|
|
* Event names for mods.
|
|
*/
|
|
export class EventNames implements IEventNames {
|
|
/*
|
|
* Key for event when a mod is enabled.
|
|
*/
|
|
public readonly onModEnable = "onModEnable";
|
|
|
|
/*
|
|
* Key for event when a mod is disabled.
|
|
*/
|
|
public readonly onModDisable = "onModDisable";
|
|
}
|