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