This commit is contained in:
lenheart
2024-09-16 17:05:26 +08:00
commit 237bcf8719
53 changed files with 21032 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/*
文件名:Timer_Dispatch.nut
路径:Dps_A/CallBack/Timer_Dispatch.nut
创建日期:2024-06-17 21:19
文件用途:每帧执行
*/
if (!("Cb_timer_dispatch_Func" in getroottable())) Cb_timer_dispatch_Func <- {};
function Cb_timer_dispatch() {
foreach(_Index, Func in Cb_timer_dispatch_Func) {
Func();
}
}