Parks-n-Rec/include/parks/window.h

19 lines
373 B
C
Raw Normal View History

2023-06-12 20:00:53 -04:00
#pragma once
#include <glad/gl.h>
#include <GLFW/glfw3.h>
#include <parks/app.h>
namespace parks::Window {
void create(const Settings &settings);
void setupGLAD();
void setupDearImGUI();
void destroy();
void preUpdate();
void postUpdate();
bool isCloseRequested();
void setCloseRequested(bool shouldClose);
GLFWwindow *getWindow();
}