diff options
| author | Léo Lam <leo@leolam.fr> | 2020-12-09 14:10:57 +0100 |
|---|---|---|
| committer | Léo Lam <leo@leolam.fr> | 2020-12-09 14:53:37 +0100 |
| commit | 632517f7279cc9f87d29ca2422d3debed3a51d90 (patch) | |
| tree | b2383149f574ef915e9422e89ed602b1f7c37a23 /src/KingSystem/ActorSystem/actAiAction.cpp | |
| parent | bf5be970dc8563604b11dc600f579812285d5fc9 (diff) | |
ksys/act: Add trivial Action functions
Diffstat (limited to 'src/KingSystem/ActorSystem/actAiAction.cpp')
| -rw-r--r-- | src/KingSystem/ActorSystem/actAiAction.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/KingSystem/ActorSystem/actAiAction.cpp b/src/KingSystem/ActorSystem/actAiAction.cpp index 2710306e..674a2e39 100644 --- a/src/KingSystem/ActorSystem/actAiAction.cpp +++ b/src/KingSystem/ActorSystem/actAiAction.cpp @@ -4,4 +4,8 @@ namespace ksys::act::ai { Action::Action(const InitArg& arg) : ActionBase(arg) {} +void Action::calc() { + calc_(); +} + } // namespace ksys::act::ai |
