Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
819 Bytes
import * as reducerType from '../unit/reducerType';
function drop(data) {
return {
type: reducerType.KEY_DROP,
data,
};
}
function down(data) {
return {
type: reducerType.KEY_DOWN,
data,
};
}
function left(data) {
return {
type: reducerType.KEY_LEFT,
data,
};
}
function right(data) {
return {
type: reducerType.KEY_RIGHT,
data,
};
}
function rotate(data) {
return {
type: reducerType.KEY_ROTATE,
data,
};
}
function reset(data) {
return {
type: reducerType.KEY_RESET,
data,
};
}
function music(data) {
return {
type: reducerType.KEY_MUSIC,
data,
};
}
function pause(data) {
return {
type: reducerType.KEY_PAUSE,
data,
};
}
export default {
drop,
down,
left,
right,
rotate,
reset,
music,
pause,
};