Simplificando callback manager

This commit is contained in:
2025-06-26 23:35:33 -04:00
parent 8b20f4499d
commit cb0d31fb9e
10 changed files with 123 additions and 152 deletions

View File

@@ -1,4 +1,5 @@
add_executable(${PROJECT_NAME})
add_executable(${PROJECT_NAME}
)
target_sources(
${PROJECT_NAME}
@@ -9,11 +10,11 @@ target_sources(
Graphics/Graphics.cpp
Graphics/Graphics.h
Graphics/Color.h
Interpreter/MachineState.cpp
Interpreter/MachineState.h
Interpreter/Interpreter.cpp
Interpreter/Interpreter.h
Interpreter/Instruction.h
Interpreter/MachineState.cpp
Interpreter/MachineState.h
Interpreter/OpCode.h
UI/CallbackManager.cpp
UI/CallbackManager.h
@@ -21,6 +22,8 @@ target_sources(
UI/ControlPanel.h
UI/Display.cpp
UI/Display.h
UI/RomInfo.cpp
UI/RomInfo.h
UI/UIManager.cpp
UI/UIManager.h
)