blob: 22340db78df3f30f616866bd4416793f36621a1e (
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
|