blob: 6f883c2049b1cc18ca70ae20aeea5b2738e6bd1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef CLIENT_FACTORY_HH
#define CLIENT_FACTORY_HH 1
#pragma once
class Dimension;
namespace client_factory
{
void create_player(Dimension* dimension, entt::entity entity);
} // namespace client_factory
#endif /* CLIENT_FACTORY_HH */
|