blob: bd06d4ed58c5fb020d516f8644bdd59b767e7e6a (
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 */
|