Files
ChronicleOfTheImmortalClan/tests/events.helpers.ts
T
thzxx adb22f0558 v0.1.0: 仙途家族志 · Chronicle of the Immortal Clan
家族模拟器首版:修仙/经营/战斗/外交/叙事全套系统
- Electron + React + TS + MetonaSqlark(aria+OPFS)
- 水墨中国风 UI
- 引擎种子随机、确定性可回放
- 19 项单元测试、端到端冒烟验证
2026-08-23 00:04:16 +08:00

8 lines
285 B
TypeScript

import { World } from '../src/renderer/game/engine/world'
import { matchesCond } from '../src/renderer/game/engine/systems/events'
import { Cond } from '../src/renderer/game/data/events'
export function matchesCondPub(w: World, cond?: Cond): boolean {
return matchesCond(w, cond)
}