blob: 094c4caf09b6316e0215feaa3998744c581441b8 (
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
29
30
|
#ifndef CLIENT_WINDOW_HH_
#define CLIENT_WINDOW_HH_
#include <algorithm>
#include <forward_list>
#include <functional>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <SDL2/SDL.h>
#include <glm/glm.hpp>
#include "client/client.hh"
#include "client/draw.hh"
#include "client/input.hh"
#include "client/settings.hh"
#include "shared/shared.hh"
namespace client {
namespace window {
void draw() noexcept;
bool is_open() noexcept;
} // namespace window
} // namespace client
#endif
|