UNPKG

hathora-et-labora-game

Version:

Game logic reducer for Uwe Rosenberg's Ora et Labora

14 lines (12 loc) 286 B
import { GameCommandConfigParams, GameState } from '../types' export const config = (params: GameCommandConfigParams) => (state: GameState): GameState | undefined => { return { ...state, config: params, rondel: { pointingBefore: 0, }, } }