7 lines
124 B
C++
7 lines
124 B
C++
#pragma once
|
|
// Minimal stub for emulator build
|
|
class InputManager {
|
|
public:
|
|
bool has_buttons() const { return false; }
|
|
};
|