2023-03-03 16:23:46 +01:00
|
|
|
import { inject, injectable } from "tsyringe";
|
|
|
|
|
2023-10-19 19:21:17 +02:00
|
|
|
import { PresetController } from "@spt-aki/controllers/PresetController";
|
|
|
|
import { OnLoad } from "@spt-aki/di/OnLoad";
|
2023-03-03 16:23:46 +01:00
|
|
|
|
|
|
|
@injectable()
|
|
|
|
export class PresetCallbacks implements OnLoad
|
|
|
|
{
|
|
|
|
constructor(
|
2023-11-10 21:19:56 +01:00
|
|
|
@inject("PresetController") protected presetController: PresetController,
|
|
|
|
)
|
|
|
|
{}
|
2023-03-03 16:23:46 +01:00
|
|
|
|
|
|
|
public async onLoad(): Promise<void>
|
|
|
|
{
|
|
|
|
this.presetController.initialize();
|
|
|
|
}
|
|
|
|
|
2023-11-10 21:19:56 +01:00
|
|
|
public getRoute(): string
|
2023-03-03 16:23:46 +01:00
|
|
|
{
|
|
|
|
return "aki-presets";
|
|
|
|
}
|
|
|
|
}
|