1111
This commit is contained in:
14
Dps_A/CallBack/Timer_Dispatch.nut
Normal file
14
Dps_A/CallBack/Timer_Dispatch.nut
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user