summaryrefslogtreecommitdiff
path: root/frontend/src/actions/simulation/playback.js
blob: 5d7d8af2e60d99c58b9ab09214e0cc14824c65f4 (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,
    }
}