blob: 869cca0de48194c0dd363f40accf1d6e908e9e24 (
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 */
|