This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
misuzu-interim/assets/misuzu.js/events/events.js

16 lines
341 B
JavaScript
Raw Normal View History

2022-09-13 15:14:49 +02:00
Misuzu.Events = {};
#include events/christmas2019.js
2022-09-13 15:14:49 +02:00
Misuzu.Events.getList = function() {
return [
new Misuzu.Events.Christmas2019,
];
};
Misuzu.Events.dispatch = function() {
var list = Misuzu.Events.getList();
for(var i = 0; i < list.length; ++i)
if(list[i].isActive())
list[i].dispatch();
};