summaryrefslogtreecommitdiffstats
path: root/game/shared/entity/stasis.hh
blob: e6cb9e4b78fd5e1a9b3236b0cf1413a04d56af14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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