GITLAB

wasteland / server

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • server
  • src
  • models
  • RoleTask.lua
  • be83d162   登陆成功。 增加数据结构修正功能 Browse Code »
    zhouahaihai
    2018-11-05 16:15:40 +0800  
RoleTask.lua 291 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29


local TaskType = {
	
}

local RoleTask = {}

function RoleTask.bind(Role)

	Role.TaskType = TaskType

	function Role:checkTaskEnter(taskType, ...)

	end


	function Role:checkDailyTask()
	end

	function Role:checkWeekTask()
	end

	function Role:checkAchievTask()
	end

end

return RoleTask