diff options
Diffstat (limited to 'game/shared/entity/stasis.hh')
| -rw-r--r-- | game/shared/entity/stasis.hh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/game/shared/entity/stasis.hh b/game/shared/entity/stasis.hh new file mode 100644 index 0000000..27c0131 --- /dev/null +++ b/game/shared/entity/stasis.hh @@ -0,0 +1,20 @@ +#ifndef SHARED_ENTITY_STASIS_HH +#define SHARED_ENTITY_STASIS_HH 1 +#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 + +#endif // SHARED_ENTITY_STASIS_HH |
