First working version of desktop emulator with game launcher support. Includes local stubs and launcher logic.

This commit is contained in:
Adolfo Reyna
2026-01-30 23:35:43 -05:00
parent d2fd001e70
commit c1423b66aa
28 changed files with 5074 additions and 0 deletions

6
emulator/input_manager.h Normal file
View File

@@ -0,0 +1,6 @@
#pragma once
// Minimal stub for emulator build
class InputManager {
public:
bool has_buttons() const { return false; }
};