diff options
author | nathan <nathan@disroot.org> | 2025-07-09 09:46:18 +0000 |
---|---|---|
committer | nathan <nathan@disroot.org> | 2025-07-09 09:46:18 +0000 |
commit | 204ad4a59f782ce7faf2f0418b33538cf15a84cb (patch) | |
tree | 263b6d149585ab6585b01cc7ca39a46ddac3f4d7 /src/entity.h | |
parent | d594afee3b6c55f24ecf05663b688ea488f073e6 (diff) | |
download | FindThings-204ad4a59f782ce7faf2f0418b33538cf15a84cb.tar.gz FindThings-204ad4a59f782ce7faf2f0418b33538cf15a84cb.tar.bz2 FindThings-204ad4a59f782ce7faf2f0418b33538cf15a84cb.zip |
Using the entity bounding box for something now
Diffstat (limited to 'src/entity.h')
-rw-r--r-- | src/entity.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/entity.h b/src/entity.h index 2a75f93..11dbde9 100644 --- a/src/entity.h +++ b/src/entity.h @@ -23,5 +23,6 @@ typedef struct { Entity createEntity(EntityId id, Vector3 position); void updateEntity(Entity* entity, Game* game); +void setEntityPosition(Entity* entity, Vector3 position); #endif |