add imgui input experiment flag

This commit is contained in:
scawful
2023-11-18 00:02:07 -05:00
parent 299770922c
commit b5ce6b96d7
3 changed files with 21 additions and 4 deletions

View File

@@ -12,9 +12,19 @@ namespace core {
class ExperimentFlags {
public:
struct Flags {
// Load and render overworld sprites to the screen. Unstable.
bool kDrawOverworldSprites = false;
// Bitmap manager abstraction to manage graphics bin of ROM.
bool kUseBitmapManager = true;
// Log instructions to the GUI debugger.
bool kLogInstructions = true;
// Flag to enable ImGui input config flags. Currently is
// handled manually by controller class but should be
// ported away from that eventually.
bool kUseNewImGuiInput = false;
};
ExperimentFlags() = default;