summaryrefslogtreecommitdiffstats
path: root/src/game/client/entity/factory.hh
blob: 20714ff071b28bdd83d196a6a59552c2a9493409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: factory.hh
// Description: Boilerplate entity creation

#ifndef CLIENT_ENTITY_FACTORY_HH
#define CLIENT_ENTITY_FACTORY_HH
#pragma once

class Dimension;

namespace client
{
void create_player(Dimension* dimension, entt::entity entity);
} // namespace client

#endif