UNPKG

osumodcalculator

Version:

osu! calculator for converting values to DT & HT and other things

31 lines (24 loc) 641 B
export * as extra from './extra'; /** * calculate accuracy and letter ranks * * equations taken from https://osu.ppy.sh/wiki/en/Gameplay/Accuracy */ export * as accuracy from './accuracy'; /** * calculate mod compatibility, names, etc. */ export * as mod from './mod'; /** * data taken from https://osu.ppy.sh/wiki/en/Gameplay/Game_modifier_(lazer) */ export { Mods } from './modData/index'; /** * ruleset name and enum conversion */ export * as mode from './mode'; /** * beatmap statistics (cs, ar, od, hp, bpm, length) */ export * as stats from './stats'; export * as types from './types';