chore(web): move skill check into dev draw tools

This commit is contained in:
Luke
2022-10-27 09:27:54 +02:00
parent 4f69c7c5c1
commit b354e0836c
3 changed files with 17 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
import { debugData } from '../../../utils/debugData';
import { GameDifficulty } from '../../skillcheck';
export const debugSkillCheck = () => {
debugData<GameDifficulty | GameDifficulty[]>([
{
action: 'startSkillCheck',
data: ['easy', 'easy', 'hard'],
},
]);
};