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