Void; part 2

This commit is contained in:
2026-04-08 16:08:06 -07:00
parent 53065a11dc
commit e7ada63431
16 changed files with 1684 additions and 60 deletions
+8
View File
@@ -0,0 +1,8 @@
import type { Phase } from "../types";
import { addVoidPhase, VOID_SEGMENT_COUNT } from "./void";
export { addVoidPhase };
export const PHASE_SEGMENT_COUNTS: Record<Phase, number> = {
void: VOID_SEGMENT_COUNT,
};