aboutsummaryrefslogtreecommitdiff
path: root/src/client/shared.hh
blob: 31c0ded7177de84bab1e07a03f2b6f3d62fb389b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef CLIENT_SHARED_HH_
#define CLIENT_SHARED_HH_

#include "client/entity/player.hh"
#include "client/state/entities.hh"

namespace client {

entities_t::iterator get_entity_it(const std::uint32_t& index) noexcept;
shared::entity& get_entity(const std::uint32_t index) noexcept;
client::player& get_localplayer() noexcept;

}; // namespace client

#endif