diff options
Diffstat (limited to 'src/game/shared/entity/stasis.hh')
| -rw-r--r-- | src/game/shared/entity/stasis.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/game/shared/entity/stasis.hh b/src/game/shared/entity/stasis.hh new file mode 100644 index 0000000..e6cb9e4 --- /dev/null +++ b/src/game/shared/entity/stasis.hh @@ -0,0 +1,16 @@ +#pragma once + +namespace world +{ +class Dimension; +} // namespace world + +namespace entity +{ +// Attached to entities with transform values +// out of bounds in a specific dimension +struct Stasis final { +public: + static void fixed_update(world::Dimension* dimension); +}; +} // namespace entity |
