diff options
| author | untodesu <kirill@untode.su> | 2025-06-29 22:24:42 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-06-29 22:24:42 +0500 |
| commit | 6cd00aacfa22fed6a54a9b812f6b069ad16feec0 (patch) | |
| tree | b77f4e665da3dd235cdb01e7e6ea78c1c02ecf2e /game/client/factory.cc | |
| parent | f440914e1ae453768d09383f332bc7844e0a700e (diff) | |
| download | voxelius-6cd00aacfa22fed6a54a9b812f6b069ad16feec0.tar.bz2 voxelius-6cd00aacfa22fed6a54a9b812f6b069ad16feec0.zip | |
Move game sources into src subdirectory
Diffstat (limited to 'game/client/factory.cc')
| -rw-r--r-- | game/client/factory.cc | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/game/client/factory.cc b/game/client/factory.cc deleted file mode 100644 index 4c1c24e..0000000 --- a/game/client/factory.cc +++ /dev/null @@ -1,28 +0,0 @@ -#include "client/pch.hh" - -#include "client/factory.hh" - -#include "shared/dimension.hh" -#include "shared/factory.hh" -#include "shared/head.hh" -#include "shared/transform.hh" - -#include "client/globals.hh" -#include "client/sound_emitter.hh" - -void client_factory::create_player(Dimension* dimension, entt::entity entity) -{ - shared_factory::create_player(dimension, entity); - - const auto& head = dimension->entities.get<HeadComponent>(entity); - dimension->entities.emplace_or_replace<HeadComponentIntr>(entity, head); - dimension->entities.emplace_or_replace<HeadComponentPrev>(entity, head); - - const auto& transform = dimension->entities.get<TransformComponent>(entity); - dimension->entities.emplace_or_replace<TransformComponentIntr>(entity, transform); - dimension->entities.emplace_or_replace<TransformComponentPrev>(entity, transform); - - if(globals::sound_ctx) { - dimension->entities.emplace_or_replace<SoundEmitterComponent>(entity); - } -} |
