CreateRoleState.lua 263 B

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