M_test.lua 557 B

123456789101112131415161718
  1. M_test = {}
  2. function M_test:getData(key)
  3. if self.datas == nil then
  4. return nil
  5. end
  6. return self.datas[key]
  7. end
  8. function M_test:init()
  9. self.datas = {}
  10. self.datas["10001"] = {ID = "10001", xxx = "观看视频", ttt = "Watch Video"}
  11. self.datas["10002"] = {ID = "10002", xxx = "今日剩余次数:#&0次", ttt = "Remaining times today: #&0 times"}
  12. self.datas["10003"] = {ID = "10003", xxx = "魔法转盘", ttt = "Magic Carousel"}
  13. self.datas["10004"] = {ID = "10004", xxx = "神秘事务司", ttt = "Division of Mystery Affairs"}
  14. end
  15. M_test:init()