You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
811 B
33 lines
811 B
#pragma once
|
|
// #include "renderer.hpp"
|
|
#include <glad/glad.h>
|
|
#include "GLFW/glfw3.h"
|
|
|
|
// Default window dimensions
|
|
#define D_WINDOW_TITLE "Euclid Engine"
|
|
|
|
#define D_WINDOW_WIDTH 640
|
|
#define D_WINDOW_HEIGHT 480
|
|
|
|
class Window {
|
|
public:
|
|
GLFWwindow* win;
|
|
// Renderer::Camera cam;
|
|
|
|
Window(const char* title);
|
|
Window(const char* title, unsigned int w, unsigned int h);
|
|
|
|
void spawn();
|
|
|
|
unsigned int width() { return _width; } // getters and dumb and
|
|
unsigned int height() { return _height; } // cpp should have readonly fields...
|
|
|
|
void updateSize(int w, int h);
|
|
private:
|
|
const char* _title = D_WINDOW_TITLE;
|
|
unsigned int _width = D_WINDOW_WIDTH;
|
|
unsigned int _height = D_WINDOW_HEIGHT;
|
|
|
|
void setWidth(unsigned int w) { _width = w; }
|
|
void setHeight(unsigned int h) { _height = h; }
|
|
};
|
|
|