Lightweight OpenGL 3D Renderer
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.
Euclid/headers/window.hpp

34 lines
811 B

#pragma once
2 years ago
// #include "renderer.hpp"
#include <glad/glad.h>
#include "GLFW/glfw3.h"
// Default window dimensions
#define D_WINDOW_TITLE "Euclid Engine"
2 years ago
2 years ago
#define D_WINDOW_WIDTH 640
#define D_WINDOW_HEIGHT 480
class Window {
public:
GLFWwindow* win;
2 years ago
// 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...
2 years ago
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; }
};