blob: c0e0716db0d39bccb7592376d2bd01799d8544e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SHARED_ENTITY_FACTORY_HH
#define SHARED_ENTITY_FACTORY_HH 1
#pragma once
namespace world
{
class Dimension;
} // namespace world
namespace entity::shared
{
void create_player(world::Dimension* dimension, entt::entity entity);
} // namespace entity::shared
#endif // SHARED_ENTITY_FACTORY_HH
|