blob: 27c01310977f361d5144d98d476454cf1587e5ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|