2022-12-25 18:45:30 -05:00
|
|
|
import { ISeasonalEventConfig } from "../models/spt/config/ISeasonalEventConfig";
|
|
|
|
import { ConfigServer } from "../servers/ConfigServer";
|
2022-08-17 02:29:54 -04:00
|
|
|
import { DatabaseServer } from "../servers/DatabaseServer";
|
|
|
|
export declare class GameEventHelper {
|
|
|
|
protected databaseServer: DatabaseServer;
|
2022-12-25 18:45:30 -05:00
|
|
|
protected configServer: ConfigServer;
|
|
|
|
protected seasonalEventConfig: ISeasonalEventConfig;
|
|
|
|
constructor(databaseServer: DatabaseServer, configServer: ConfigServer);
|
2022-08-17 02:29:54 -04:00
|
|
|
}
|