Files
SectrPrototype/code2/sectr/state.odin
2025-10-13 02:13:58 -04:00

14 lines
214 B
Odin

package sectr
// This should be the only global on client module side.
memory: ^ProcessMemory
@(thread_local)
thread_ctx: ^ThreadMemory
THREAD_TICK_LANES :: 2
State :: struct {
job_system: JobSystemContext,
}