tickwerk/src/systems/index.js
Johannes Loher b6411f39dc feat: update for v10
Unfortunately, ditching TypeScript is needed for that :(
2022-11-28 00:52:31 +01:00

13 lines
337 B
JavaScript

// SPDX-FileCopyrightText: 2022 Johannes Loher
//
// SPDX-License-Identifier: MIT
import { getGame } from '../helpers';
import { registerDS4SpecificFunctionality } from './ds4';
export const registerSystemSpecificFunctionality = () => {
switch (getGame().system.id) {
case 'ds4':
registerDS4SpecificFunctionality();
}
};