| 1745 | } |
| 1746 | |
| 1747 | void EntitySystemHelpersBase::StaticSystemUpdateHook(BaseSystem* system, EntityWorld& world, GameTime const& time) |
| 1748 | { |
| 1749 | auto helpers = (&world == gExtender->GetClient().GetEntityHelpers().GetEntityWorld()) |
| 1750 | ? (EntitySystemHelpersBase*)&gExtender->GetClient().GetEntityHelpers() |
| 1751 | : (EntitySystemHelpersBase*)&gExtender->GetServer().GetEntityHelpers(); |
| 1752 | |
| 1753 | helpers->SystemUpdateHook(system, world, time); |
| 1754 | } |
| 1755 | |
| 1756 | void EntitySystemHelpersBase::InitSystemUpdateHooks() |
| 1757 | { |
nothing calls this directly
no test coverage detected