📄 state.vb
字号:
Public Class State
'//this will execute when the state is entered
Public Overridable Sub Enter(ByVal m As Miner)
End Sub
'//this is the state's normal update function
Public Overridable Sub Execute(ByVal m As Miner)
End Sub
'//this will execute when the state is exited. (My word, isn't
'//life full of surprises... ;o))
Public Overridable Sub ExitState(ByVal m As Miner)
End Sub
End Class
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -