summaryrefslogtreecommitdiff
path: root/src/manager.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/manager.c')
-rw-r--r--src/manager.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/manager.c b/src/manager.c
index 1d8974cf..eda605a0 100644
--- a/src/manager.c
+++ b/src/manager.c
@@ -12,3 +12,8 @@ void (*const gManagerFunctions[])() = {
Manager31_Main, Manager32_Main, Manager33_Main, Manager34_Main, Manager35_Main, Manager36_Main, Manager37_Main,
Manager38_Main, Manager39_Main
};
+
+void ManagerUpdate(Entity* this) {
+ if (!CheckDontUpdate(this))
+ gManagerFunctions[this->id](this);
+}