mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 23:46:03 +01:00
14 lines
291 B
TypeScript
14 lines
291 B
TypeScript
|
|
interface CustomGameDifficulty {
|
||
|
|
areaSize: number;
|
||
|
|
speedMultiplier: number;
|
||
|
|
}
|
||
|
|
|
||
|
|
export type GameDifficulty = 'easy' | 'medium' | 'hard' | CustomGameDifficulty;
|
||
|
|
|
||
|
|
export interface SkillCheckProps {
|
||
|
|
angle: number;
|
||
|
|
difficultyOffset: number;
|
||
|
|
difficulty: GameDifficulty;
|
||
|
|
key: string;
|
||
|
|
}
|