Basic rectangle drawing

This commit is contained in:
2022-04-30 20:20:07 +02:00
parent ddf7e14682
commit f547ff1b8f
8 changed files with 93 additions and 40 deletions

View File

@ -1,4 +1,5 @@
#pragma once
#include <glad/glad.h>
#include <GLFW/glfw3.h>
@ -9,7 +10,7 @@ class BarinkWindow{
bool VulkanSupported;
int Width, Height;
bool InitGLFW();
static bool InitGLFW();
public: