plugins/sdvx@asphyxia/index.ts
2020-05-28 01:35:57 +01:00

18 lines
564 B
TypeScript

import { common } from './handlers/common';
import { load, create, loadScores } from './handlers/profile';
export function register() {
R.GameCode('KFC');
R.Config('unlock_all_songs', { type: 'boolean', default: false });
R.Config('unlock_all_navigators', { type: 'boolean', default: false });
R.Route('game.sv4_common', common);
R.Route('game.sv4_load', load);
R.Route('game.sv4_load_m', loadScores);
R.Route('game.sv4_new', create);
R.Route('game.sv4_frozen', true);
R.Route('game.sv4_load_r', true);
R.Route('game.sv5_common', common);
}