silphius/app/ecs/systems/index.js

7 lines
204 B
JavaScript
Raw Normal View History

2024-06-25 10:43:12 -05:00
import System from '@/ecs/system.js';
2024-06-22 22:33:34 -05:00
import gather from '@/util/gather.js';
2024-06-14 15:18:55 -05:00
2024-06-25 10:43:12 -05:00
const gathered = gather(import.meta.glob('./*.js', {eager: true, import: 'default'}));
export default System.sort(gathered);