diff options
| author | Léo Lam <leo@leolam.fr> | 2021-03-12 19:30:37 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2021-03-12 20:00:07 +0100 |
| commit | c23f86e6d5aaba7bd85790fc0f206f0db5e739cd (patch) | |
| tree | 5586e9bed229d2b64b6ee934b3e9d9ab2b98eee9 /src/KingSystem/Utils/Thread | |
| parent | d072fcf7da93fcd03a10a169ac3e10476191916e (diff) | |
ksys/act: Add BaseProcCreateTaskSelector
Diffstat (limited to 'src/KingSystem/Utils/Thread')
| -rw-r--r-- | src/KingSystem/Utils/Thread/TaskQueueBase.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/KingSystem/Utils/Thread/TaskQueueBase.h b/src/KingSystem/Utils/Thread/TaskQueueBase.h index bdc7503f..e90d4a24 100644 --- a/src/KingSystem/Utils/Thread/TaskQueueBase.h +++ b/src/KingSystem/Utils/Thread/TaskQueueBase.h @@ -26,6 +26,8 @@ struct TaskSelectionContext { }; using TaskSelectionDelegate = sead::IDelegate1R<const TaskSelectionContext&, Task*>; +template <typename T> +using TaskSelectionDelegateT = sead::Delegate1R<T, const TaskSelectionContext&, Task*>; class TaskQueueBase { SEAD_RTTI_BASE(TaskQueueBase) |
