make action chain

This commit is contained in:
bridge
2025-09-13 22:45:46 +08:00
parent 50da151334
commit 244e428d81
9 changed files with 200 additions and 59 deletions

View File

@@ -2,4 +2,6 @@ from src.classes.action import Action
ACTION_NAME = str
ACTION_PARAMS = dict
ACTION_PAIR = tuple[Action, ACTION_PARAMS]
ACTION_PAIR = tuple[Action, ACTION_PARAMS]
ACTION_NAME_PARAMS_PAIR = tuple[ACTION_NAME, ACTION_PARAMS]
ACTION_NAME_PARAMS_PAIRS = list[ACTION_NAME_PARAMS_PAIR]