comenzado a crear paneles con imgui para controlar/debugear la ejecucion

This commit is contained in:
2025-06-22 22:15:22 -04:00
parent eaec6ed8ab
commit 8df1300bd1
6 changed files with 83 additions and 15 deletions

14
src/Chip8ControlPanel.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef CHIP8CONTROLPANEL_H
#define CHIP8CONTROLPANEL_H
class Chip8ControlPanel {
bool run = false;
int steps = 10;
int speed = 700;
public:
void render();
};
#endif //CHIP8CONTROLPANEL_H