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