blob: 2907cfb155f80b468aca652cd685e3c237a6601b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SHARED_STASIS_HH
#define SHARED_STASIS_HH 1
#pragma once
class Dimension;
// Attached to entities with transform values
// out of bounds in a specific dimension
struct StasisComponent final {
public:
static void fixed_update(Dimension* dimension);
};
#endif // SHARED_STASIS_HH
|