blob: 8e91391423d72e8d6ab6304c16e327b339b61130 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export const SET_PLAYING = "SET_PLAYING";
export function playSimulation() {
return {
type: SET_PLAYING,
playing: true
};
}
export function pauseSimulation() {
return {
type: SET_PLAYING,
playing: false
};
}
|