|  | /*
 | 
						
						
						
							|  | 文件名: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();
 | 
						
						
						
							|  |     }
 | 
						
						
						
							|  | } |