ro-table/Asstes/Resources/Script/Com/Data/TutorGrowthReward.txt
2025-06-04 05:02:57 +08:00

20 lines
447 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

TutorGrowthReward = class("TutorGrowthReward")
function TutorGrowthReward:ctor()
self.id = 0
self.MaxLevel = 0
self.Type = 0 --1:成長獎勵 2畢業獎勵
self.StudentReward = 0
self.canGet = 0
end
function TutorGrowthReward:SetData(index,data)
self.id = data.id
self.MaxLevel = data.MaxLevel
self.Type = data.Type
self.StudentReward = data.StudentReward
end
function TutorGrowthReward:UpdateStatus(state)
self.canGet = state
end