UNPKG

@civ-clone/core-rule

Version:

This component contains the framework for `Rule`s. These are comprised of `Criterion`s and `Effect`s with optional `Priority`s.

10 lines (7 loc) 135 B
import Priority from '../Priority'; export class Low extends Priority { constructor() { super(3000); } } export default Low;