/ game-server / source / plugins / L2ExecutablePlugin.ts
L2ExecutablePlugin.ts
 1  export enum L2ExecutablePluginStatus {
 2      OFF,
 3      INITIALIZED,
 4      RUNNING
 5  }
 6  export interface L2ExecutablePlugin {
 7      onStart() : Promise<void>
 8      onEnd() : Promise<void>
 9      getId() : string
10      getStatus() : L2ExecutablePluginStatus
11  }