11 lines
292 B
TypeScript
Raw Normal View History

2022-06-08 22:08:43 +01:00
import { DependencyContainer } from "tsyringe";
2022-08-19 17:27:56 +01:00
import { IPreAkiLoadMod } from "@spt-aki/models/external/IPreAkiLoadMod";
2022-06-08 22:08:43 +01:00
2022-08-19 17:27:56 +01:00
class CWX_MasterKey implements IPreAkiLoadMod
2022-06-08 22:08:43 +01:00
{
2022-08-19 17:27:56 +01:00
public preAkiLoad(container: DependencyContainer): void
2022-06-08 22:08:43 +01:00
{
}
}
module.exports = { mod: new CWX_MasterKey() }