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/window.hh | |
initial commit
Diffstat (limited to 'src/client/window.hh')
| -rw-r--r-- | src/client/window.hh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/client/window.hh b/src/client/window.hh new file mode 100644 index 0000000..094c4ca --- /dev/null +++ b/src/client/window.hh @@ -0,0 +1,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 |
