summaryrefslogtreecommitdiffstats
path: root/src/game/shared/entity/factory.hh
blob: 158b18793617122e26adfcebca7f8d99074b9fb9 (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 SHARED_ENTITY_FACTORY_HH
#define SHARED_ENTITY_FACTORY_HH
#pragma once

class Dimension;

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

#endif