Added support for applying patches! added DemoInputDelay state to make recording Boot state easier, misc fixes for tweaks.

This commit is contained in:
2021-11-26 22:36:29 -06:00
parent 2a65761b8d
commit 7257030e74
6 changed files with 113 additions and 28 deletions

View File

@@ -0,0 +1,12 @@
class W3DHub
class States
class DemoInputDelay < CyberarmEngine::GameState
def button_down(id)
return unless id == Gosu::KB_SPACE
pop_state # Erase self
push_state(States::Boot)
end
end
end
end