tickwerk/src/systems/index.ts

10 lines
254 B
TypeScript

import { getGame } from '../helpers';
import { registerDS4SpecificFunctionality } from './ds4';
export const registerSystemSpecificFunctionality = () => {
switch (getGame().system.id) {
case 'ds4':
registerDS4SpecificFunctionality();
}
};