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) }