works, no input yet, but renders and loads wad

This commit is contained in:
2024-03-09 14:41:56 +01:00
parent 74ef90e84b
commit 3087e10c5e
9 changed files with 226 additions and 51 deletions

View File

@@ -0,0 +1,21 @@
#pragma once
#include "./doom.hpp"
class DoomIMGUI {
// inherit instead?
Doom _doom;
public:
DoomIMGUI(
TextureUploaderI& tu
);
~DoomIMGUI(void);
// render imgui
float render(float time_delta);
public: // custom doom api
uint64_t getTexID(void);
};