mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
15 lines
391 B
TypeScript
15 lines
391 B
TypeScript
import { debugData } from '../../../utils/debugData';
|
|
import { GameDifficulty } from '../../../typings';
|
|
|
|
export const debugSkillCheck = () => {
|
|
debugData<{ difficulty: GameDifficulty | GameDifficulty[]; inputs?: string[] }>([
|
|
{
|
|
action: 'startSkillCheck',
|
|
data: {
|
|
difficulty: ['easy', 'easy', 'hard'],
|
|
inputs: ['W', 'A', 'S', 'D'],
|
|
},
|
|
},
|
|
]);
|
|
};
|