9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
|
import { IBaseConfig } from "./IBaseConfig"
|
||
|
|
||
|
export interface IHideoutConfig extends IBaseConfig
|
||
|
{
|
||
|
kind: "aki-hideout"
|
||
|
runIntervalSeconds: number
|
||
|
hoursForSkillCrafting: number
|
||
|
hideoutWallAppearTimeSeconds: number
|
||
|
}
|