blob: 6dbabc1f3bb673ee0ccccf2c59ae78266277a67c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef CLIENT_CLIENT_HH_
#define CLIENT_CLIENT_HH_
#include <algorithm>
#include <cmath>
#include <string_view>
#include <unordered_map>
#include "client/draw.hh"
#include "client/input.hh"
#include "client/movement.hh"
#include "client/player.hh"
#include "client/render/camera.hh"
#include "client/settings.hh"
#include "client/shared.hh"
#include "client/window.hh"
#include "client/world.hh"
#include "shared/math.hh"
#include "shared/net/net.hh"
#include "shared/net/proto.hh"
namespace client {
void send_say_packet(const std::string& text) noexcept;
void main(const std::string_view address, const std::string_view port);
} // namespace client
#endif
|