IdleState.lua 222 B

1234567891011121314151617
  1. local IdleState = class("IdleState", require("StateBase"))
  2. function IdleState:Enter()
  3. end
  4. function IdleState:Update()
  5. end
  6. function IdleState:Exit()
  7. end
  8. function IdleState:GetTask()
  9. return nil
  10. end
  11. return IdleState