diff --git a/app/engine/index.ts b/app/engine/index.ts index 63471aa..b9a8347 100644 --- a/app/engine/index.ts +++ b/app/engine/index.ts @@ -2,11 +2,12 @@ export { ActionType, CANT_BUZZ_FLAG, CLUE_TIMEOUT_MS, + QUANTIZATION_FACTOR_MS, gameEngine, getHighestClueValue, } from "./engine"; export type { Action } from "./engine"; -export { clueIsPlayable, GameState } from "./state"; +export { GameState, clueIsPlayable } from "./state"; export type { Player, State } from "./state"; export { GameEngineContext, useEngineContext } from "./use-engine-context"; export { useGameEngine, useSoloGameEngine } from "./use-game-engine";