ds4/src/module/macros/macros.ts

10 lines
218 B
TypeScript
Raw Normal View History

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,
};