diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2025-02-12 18:05:18 +1100 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2025-02-12 18:05:18 +1100 |
| commit | 1cc08c51eb4b0f95c30c0a98ad1fc5ad3459b2df (patch) | |
| tree | 222dfcd07a1e40716127a347bbfd7119ce3d0984 /src/client/client.hh | |
initial commit
Diffstat (limited to 'src/client/client.hh')
| -rw-r--r-- | src/client/client.hh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/client/client.hh b/src/client/client.hh new file mode 100644 index 0000000..6dbabc1 --- /dev/null +++ b/src/client/client.hh @@ -0,0 +1,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 |
