resolve #4 Improve timer's performance by storing all callbacks in an array (#5)

This commit is contained in:
edwardwu
2026-04-01 12:00:00 +08:00
committed by YUyz
parent 92faf502d0
commit 05530551df
3 changed files with 102 additions and 52 deletions

View File

@@ -239,3 +239,8 @@ export type missingNode = {
export type missingNodeMap = {
[id: number]: missingNode;
};
export type actionWithDelay = {
doAction: () => void;
delay: number;
};