@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 • 615 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Normal = exports.Low = exports.High = void 0;
var High_1 = require("./Priorities/High");
Object.defineProperty(exports, "High", { enumerable: true, get: function () { return High_1.High; } });
var Low_1 = require("./Priorities/Low");
Object.defineProperty(exports, "Low", { enumerable: true, get: function () { return Low_1.Low; } });
var Normal_1 = require("./Priorities/Normal");
Object.defineProperty(exports, "Normal", { enumerable: true, get: function () { return Normal_1.Normal; } });
//# sourceMappingURL=Priorities.js.map
;