blob: a30b1dc986992688e6213307bc1df71267237216 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SHARED_GROUNDED
#define SHARED_GROUNDED 1
#pragma once
#include "shared/voxel_registry.hh"
// Assigned to entities which are grounded
// according to the collision and gravity system
struct GroundedComponent final {
voxel_surface surface;
};
#endif // SHARED_GROUNDED
|