blob: 4dec985db6d66e90bb77c1a717b5a47ffb8578f6 (
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 */
|