Fish_LargeFishCFG1.lua 223 B

1234567891011121314
  1. Fish_LargeFishCFG1 = {}
  2. function Fish_LargeFishCFG1:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function Fish_LargeFishCFG1:init()
  9. self.datas = {}
  10. end
  11. Fish_LargeFishCFG1:init()