2022-09-13 13:14:49 +00:00
|
|
|
Misuzu.Events = {};
|
2023-07-17 14:37:39 +00:00
|
|
|
|
|
|
|
#include events/christmas2019.js
|
|
|
|
|
2022-09-13 13:14:49 +00: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();
|
|
|
|
};
|