implemented draw function in interpreter

This commit is contained in:
2024-11-28 19:38:11 -05:00
parent 5429c5fac1
commit ea4b961d53
5 changed files with 151 additions and 26 deletions

View File

@@ -37,7 +37,7 @@ namespace chocochip8 {
class Keypad {
public:
virtual ~Keypad() = default;
virtual void isKeyPressed(Key key) = 0;
virtual bool isKeyPressed(Key key) = 0;
};
}; // namespace chocochip8