mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
18 lines
564 B
TypeScript
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);
|
|
}
|