blob: 34a0f9e990e93ad8e48a89ae802ef2d5c2126ee6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#pragma once
#include "shared/world/voxel.hh"
namespace entity
{
// Assigned to entities which are grounded
// according to the collision and gravity system
struct Grounded final {
world::VoxelMaterial surface;
};
} // namespace entity
|