blob: 8edba5e05cfb811126f6b1f415b8eda846b48119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: BSD-2-Clause
// Copyright (c) 2025 Kirill Dmitrievich
// File: player.hh
// Description: Flag components for entites that are players
#ifndef SHARED_ENTITY_PLAYER_HH
#define SHARED_ENTITY_PLAYER_HH
#pragma once
struct Player final {};
#endif
|