Update opengl.hpp, start with ELFs

This commit is contained in:
wheremyfoodat 2022-09-15 14:59:44 +03:00
parent 1a8d563041
commit 51689af51f
8 changed files with 469 additions and 392 deletions

View file

@ -1,5 +1,7 @@
#pragma once
#define NOMINMAX // Windows why
#include <filesystem>
#include "cpu.hpp"
#include "helpers.hpp"
#include "opengl.hpp"
@ -25,4 +27,6 @@ public:
void reset();
void run();
void runFrame();
bool loadELF(std::filesystem::path& path);
};