UNPKG

civ7-modding-tools

Version:
13 lines (9 loc) 318 B
import { BaseNode } from "./BaseNode"; export type TUnlockNode = Pick<UnlockNode, "unlockType">; export class UnlockNode extends BaseNode<TUnlockNode> { unlockType: string | null = 'UNLOCK_'; constructor(payload: Partial<TUnlockNode> = {}) { super(); this.fill(payload); } }