Blame view

ios/cocos2d/cocos/editor-support/cocostudio/fbs-files/CSLanguageDataBinary.fbs 161 Bytes
520389e3   xiaoyu   接入cocos源码,编译未通过,继续修改
1
2
3
4
5
6
7
8
9
10
11
12
  namespace flatbuffers;
  
  table LanguageItem {
      key:string;
      value:string;
  }
  
  table LanguageSet {
      languageItems:[LanguageItem];
  }
  
  root_type LanguageSet;