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,4 +1,6 @@
#pragma once
#include <filesystem>
#include <optional>
#include <vector>
#include "helpers.hpp"
@@ -15,4 +17,6 @@ public:
Memory();
void* getReadPointer(u32 address);
void* getWritePointer(u32 address);
std::optional<u32> loadELF(std::filesystem::path& path);
};