15 lines
208 B
C++
15 lines
208 B
C++
#ifndef CHIP8CONTROLPANEL_H
|
|
#define CHIP8CONTROLPANEL_H
|
|
|
|
|
|
class Chip8ControlPanel {
|
|
bool run = false;
|
|
int steps = 10;
|
|
int speed = 700;
|
|
public:
|
|
void render();
|
|
};
|
|
|
|
|
|
#endif //CHIP8CONTROLPANEL_H
|