diff options
| author | untodesu <kirill@untode.su> | 2025-09-11 15:45:26 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-09-11 15:45:26 +0500 |
| commit | b8bbc54c5c920aff1ff1b45a693f50d6d96d61c8 (patch) | |
| tree | 8b2903b313a71f8851705be400fc3e0a8317028f /game/shared/entity | |
| parent | a6ea7b7bbc66327cc2a957496f65dcfab5361cee (diff) | |
| download | voxelius-b8bbc54c5c920aff1ff1b45a693f50d6d96d61c8.tar.bz2 voxelius-b8bbc54c5c920aff1ff1b45a693f50d6d96d61c8.zip | |
Revise style: split include groups
Diffstat (limited to 'game/shared/entity')
| -rw-r--r-- | game/shared/entity/collision.cc | 1 | ||||
| -rw-r--r-- | game/shared/entity/factory.cc | 1 | ||||
| -rw-r--r-- | game/shared/entity/gravity.cc | 1 | ||||
| -rw-r--r-- | game/shared/entity/stasis.cc | 1 | ||||
| -rw-r--r-- | game/shared/entity/velocity.cc | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/game/shared/entity/collision.cc b/game/shared/entity/collision.cc index 454e96a..4346b68 100644 --- a/game/shared/entity/collision.cc +++ b/game/shared/entity/collision.cc @@ -8,6 +8,7 @@ #include "shared/entity/grounded.hh" #include "shared/entity/transform.hh" #include "shared/entity/velocity.hh" + #include "shared/world/dimension.hh" #include "shared/world/voxel_registry.hh" diff --git a/game/shared/entity/factory.cc b/game/shared/entity/factory.cc index c98306a..619a418 100644 --- a/game/shared/entity/factory.cc +++ b/game/shared/entity/factory.cc @@ -8,6 +8,7 @@ #include "shared/entity/player.hh" #include "shared/entity/transform.hh" #include "shared/entity/velocity.hh" + #include "shared/world/dimension.hh" #include "shared/globals.hh" diff --git a/game/shared/entity/gravity.cc b/game/shared/entity/gravity.cc index f5dd145..f1708aa 100644 --- a/game/shared/entity/gravity.cc +++ b/game/shared/entity/gravity.cc @@ -4,6 +4,7 @@ #include "shared/entity/stasis.hh" #include "shared/entity/velocity.hh" + #include "shared/world/dimension.hh" #include "shared/globals.hh" diff --git a/game/shared/entity/stasis.cc b/game/shared/entity/stasis.cc index 68d8e9d..3b86294 100644 --- a/game/shared/entity/stasis.cc +++ b/game/shared/entity/stasis.cc @@ -3,6 +3,7 @@ #include "shared/entity/stasis.hh" #include "shared/entity/transform.hh" + #include "shared/world/dimension.hh" void entity::Stasis::fixed_update(world::Dimension* dimension) diff --git a/game/shared/entity/velocity.cc b/game/shared/entity/velocity.cc index 9e40688..86df445 100644 --- a/game/shared/entity/velocity.cc +++ b/game/shared/entity/velocity.cc @@ -4,6 +4,7 @@ #include "shared/entity/stasis.hh" #include "shared/entity/transform.hh" + #include "shared/world/dimension.hh" #include "shared/globals.hh" |
