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