blob: cb364ce300d99fce68bf234afb1a81cb6d891f0f (
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
|