mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
13 lines
384 B
TypeScript
13 lines
384 B
TypeScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
import { createAction } from 'common/redux';
|
|
|
|
export const roundRestarted = createAction('roundrestart');
|
|
export const connectionLost = createAction('game/connectionLost');
|
|
export const connectionRestored = createAction('game/connectionRestored');
|
|
export const dismissWarning = createAction('game/dismissWarning');
|