ds4/src/module/macros/macros.ts

14 lines
301 B
TypeScript
Raw Normal View History

2021-06-26 22:02:00 +02:00
// SPDX-FileCopyrightText: 2021 Johannes Loher
//
// SPDX-License-Identifier: MIT
import { rollCheck } from "./roll-check";
2021-05-13 21:39:42 +02:00
import { rollGenericCheck } from "./roll-generic-check";
2021-03-16 08:25:56 +01:00
import { rollItem } from "./roll-item";
export const macros = {
rollCheck,
2021-05-13 21:39:42 +02:00
rollGenericCheck,
rollItem,
};