Svga.pbobjc.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. // Generated by the protocol buffer compiler. DO NOT EDIT!
  2. // source: svga.proto
  3. // This CPP symbol can be defined to use imports that match up to the framework
  4. // imports needed when using CocoaPods.
  5. #if !defined(GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS)
  6. #define GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS 0
  7. #endif
  8. #if GPB_USE_PROTOBUF_FRAMEWORK_IMPORTS
  9. #import <Protobuf/GPBProtocolBuffers.h>
  10. #else
  11. #import "GPBProtocolBuffers.h"
  12. #endif
  13. #if GOOGLE_PROTOBUF_OBJC_VERSION < 30002
  14. #error This file was generated by a newer version of protoc which is incompatible with your Protocol Buffer library sources.
  15. #endif
  16. #if 30002 < GOOGLE_PROTOBUF_OBJC_MIN_SUPPORTED_VERSION
  17. #error This file was generated by an older version of protoc which is incompatible with your Protocol Buffer library sources.
  18. #endif
  19. // @@protoc_insertion_point(imports)
  20. #pragma clang diagnostic push
  21. #pragma clang diagnostic ignored "-Wdeprecated-declarations"
  22. CF_EXTERN_C_BEGIN
  23. @class SVGAProtoFrameEntity;
  24. @class SVGAProtoLayout;
  25. @class SVGAProtoMovieParams;
  26. @class SVGAProtoShapeEntity;
  27. @class SVGAProtoShapeEntity_EllipseArgs;
  28. @class SVGAProtoShapeEntity_RectArgs;
  29. @class SVGAProtoShapeEntity_ShapeArgs;
  30. @class SVGAProtoShapeEntity_ShapeStyle;
  31. @class SVGAProtoShapeEntity_ShapeStyle_RGBAColor;
  32. @class SVGAProtoSpriteEntity;
  33. @class SVGAProtoTransform;
  34. NS_ASSUME_NONNULL_BEGIN
  35. #pragma mark - Enum SVGAProtoShapeEntity_ShapeType
  36. typedef GPB_ENUM(SVGAProtoShapeEntity_ShapeType) {
  37. /**
  38. * Value used if any message's field encounters a value that is not defined
  39. * by this enum. The message will also have C functions to get/set the rawValue
  40. * of the field.
  41. **/
  42. SVGAProtoShapeEntity_ShapeType_GPBUnrecognizedEnumeratorValue = kGPBUnrecognizedEnumeratorValue,
  43. /** 路径 */
  44. SVGAProtoShapeEntity_ShapeType_Shape = 0,
  45. /** 矩形 */
  46. SVGAProtoShapeEntity_ShapeType_Rect = 1,
  47. /** 圆形 */
  48. SVGAProtoShapeEntity_ShapeType_Ellipse = 2,
  49. /** 与前帧一致 */
  50. SVGAProtoShapeEntity_ShapeType_Keep = 3,
  51. };
  52. GPBEnumDescriptor *SVGAProtoShapeEntity_ShapeType_EnumDescriptor(void);
  53. /**
  54. * Checks to see if the given value is defined by the enum or was not known at
  55. * the time this source was generated.
  56. **/
  57. BOOL SVGAProtoShapeEntity_ShapeType_IsValidValue(int32_t value);
  58. #pragma mark - Enum SVGAProtoShapeEntity_ShapeStyle_LineCap
  59. typedef GPB_ENUM(SVGAProtoShapeEntity_ShapeStyle_LineCap) {
  60. /**
  61. * Value used if any message's field encounters a value that is not defined
  62. * by this enum. The message will also have C functions to get/set the rawValue
  63. * of the field.
  64. **/
  65. SVGAProtoShapeEntity_ShapeStyle_LineCap_GPBUnrecognizedEnumeratorValue = kGPBUnrecognizedEnumeratorValue,
  66. SVGAProtoShapeEntity_ShapeStyle_LineCap_LineCapButt = 0,
  67. SVGAProtoShapeEntity_ShapeStyle_LineCap_LineCapRound = 1,
  68. SVGAProtoShapeEntity_ShapeStyle_LineCap_LineCapSquare = 2,
  69. };
  70. GPBEnumDescriptor *SVGAProtoShapeEntity_ShapeStyle_LineCap_EnumDescriptor(void);
  71. /**
  72. * Checks to see if the given value is defined by the enum or was not known at
  73. * the time this source was generated.
  74. **/
  75. BOOL SVGAProtoShapeEntity_ShapeStyle_LineCap_IsValidValue(int32_t value);
  76. #pragma mark - Enum SVGAProtoShapeEntity_ShapeStyle_LineJoin
  77. typedef GPB_ENUM(SVGAProtoShapeEntity_ShapeStyle_LineJoin) {
  78. /**
  79. * Value used if any message's field encounters a value that is not defined
  80. * by this enum. The message will also have C functions to get/set the rawValue
  81. * of the field.
  82. **/
  83. SVGAProtoShapeEntity_ShapeStyle_LineJoin_GPBUnrecognizedEnumeratorValue = kGPBUnrecognizedEnumeratorValue,
  84. SVGAProtoShapeEntity_ShapeStyle_LineJoin_LineJoinMiter = 0,
  85. SVGAProtoShapeEntity_ShapeStyle_LineJoin_LineJoinRound = 1,
  86. SVGAProtoShapeEntity_ShapeStyle_LineJoin_LineJoinBevel = 2,
  87. };
  88. GPBEnumDescriptor *SVGAProtoShapeEntity_ShapeStyle_LineJoin_EnumDescriptor(void);
  89. /**
  90. * Checks to see if the given value is defined by the enum or was not known at
  91. * the time this source was generated.
  92. **/
  93. BOOL SVGAProtoShapeEntity_ShapeStyle_LineJoin_IsValidValue(int32_t value);
  94. #pragma mark - SVGAProtoSvgaRoot
  95. /**
  96. * Exposes the extension registry for this file.
  97. *
  98. * The base class provides:
  99. * @code
  100. * + (GPBExtensionRegistry *)extensionRegistry;
  101. * @endcode
  102. * which is a @c GPBExtensionRegistry that includes all the extensions defined by
  103. * this file and all files that it depends on.
  104. **/
  105. @interface SVGAProtoSvgaRoot : GPBRootObject
  106. @end
  107. #pragma mark - SVGAProtoMovieParams
  108. typedef GPB_ENUM(SVGAProtoMovieParams_FieldNumber) {
  109. SVGAProtoMovieParams_FieldNumber_ViewBoxWidth = 1,
  110. SVGAProtoMovieParams_FieldNumber_ViewBoxHeight = 2,
  111. SVGAProtoMovieParams_FieldNumber_Fps = 3,
  112. SVGAProtoMovieParams_FieldNumber_Frames = 4,
  113. };
  114. @interface SVGAProtoMovieParams : GPBMessage
  115. /** 画布宽 */
  116. @property(nonatomic, readwrite) float viewBoxWidth;
  117. /** 画布高 */
  118. @property(nonatomic, readwrite) float viewBoxHeight;
  119. /** 动画每秒播放帧数,合法值是 [1, 2, 3, 5, 6, 10, 12, 15, 20, 30, 60] 中的任意一个。 */
  120. @property(nonatomic, readwrite) int32_t fps;
  121. /** 动画总帧数 */
  122. @property(nonatomic, readwrite) int32_t frames;
  123. @end
  124. #pragma mark - SVGAProtoSpriteEntity
  125. typedef GPB_ENUM(SVGAProtoSpriteEntity_FieldNumber) {
  126. SVGAProtoSpriteEntity_FieldNumber_ImageKey = 1,
  127. SVGAProtoSpriteEntity_FieldNumber_FramesArray = 2,
  128. };
  129. @interface SVGAProtoSpriteEntity : GPBMessage
  130. /** 元件所对应的位图键名, 如果 imageKey 含有 .vector 后缀,该 sprite 为矢量图层。 */
  131. @property(nonatomic, readwrite, copy, null_resettable) NSString *imageKey;
  132. /** 帧列表 */
  133. @property(nonatomic, readwrite, strong, null_resettable) NSMutableArray<SVGAProtoFrameEntity*> *framesArray;
  134. /** The number of items in @c framesArray without causing the array to be created. */
  135. @property(nonatomic, readonly) NSUInteger framesArray_Count;
  136. @end
  137. #pragma mark - SVGAProtoLayout
  138. typedef GPB_ENUM(SVGAProtoLayout_FieldNumber) {
  139. SVGAProtoLayout_FieldNumber_X = 1,
  140. SVGAProtoLayout_FieldNumber_Y = 2,
  141. SVGAProtoLayout_FieldNumber_Width = 3,
  142. SVGAProtoLayout_FieldNumber_Height = 4,
  143. };
  144. @interface SVGAProtoLayout : GPBMessage
  145. @property(nonatomic, readwrite) float x;
  146. @property(nonatomic, readwrite) float y;
  147. @property(nonatomic, readwrite) float width;
  148. @property(nonatomic, readwrite) float height;
  149. @end
  150. #pragma mark - SVGAProtoTransform
  151. typedef GPB_ENUM(SVGAProtoTransform_FieldNumber) {
  152. SVGAProtoTransform_FieldNumber_A = 1,
  153. SVGAProtoTransform_FieldNumber_B = 2,
  154. SVGAProtoTransform_FieldNumber_C = 3,
  155. SVGAProtoTransform_FieldNumber_D = 4,
  156. SVGAProtoTransform_FieldNumber_Tx = 5,
  157. SVGAProtoTransform_FieldNumber_Ty = 6,
  158. };
  159. @interface SVGAProtoTransform : GPBMessage
  160. @property(nonatomic, readwrite) float a;
  161. @property(nonatomic, readwrite) float b;
  162. @property(nonatomic, readwrite) float c;
  163. @property(nonatomic, readwrite) float d;
  164. @property(nonatomic, readwrite) float tx;
  165. @property(nonatomic, readwrite) float ty;
  166. @end
  167. #pragma mark - SVGAProtoShapeEntity
  168. typedef GPB_ENUM(SVGAProtoShapeEntity_FieldNumber) {
  169. SVGAProtoShapeEntity_FieldNumber_Type = 1,
  170. SVGAProtoShapeEntity_FieldNumber_Shape = 2,
  171. SVGAProtoShapeEntity_FieldNumber_Rect = 3,
  172. SVGAProtoShapeEntity_FieldNumber_Ellipse = 4,
  173. SVGAProtoShapeEntity_FieldNumber_Styles = 10,
  174. SVGAProtoShapeEntity_FieldNumber_Transform = 11,
  175. };
  176. typedef GPB_ENUM(SVGAProtoShapeEntity_Args_OneOfCase) {
  177. SVGAProtoShapeEntity_Args_OneOfCase_GPBUnsetOneOfCase = 0,
  178. SVGAProtoShapeEntity_Args_OneOfCase_Shape = 2,
  179. SVGAProtoShapeEntity_Args_OneOfCase_Rect = 3,
  180. SVGAProtoShapeEntity_Args_OneOfCase_Ellipse = 4,
  181. };
  182. @interface SVGAProtoShapeEntity : GPBMessage
  183. /** 矢量类型 */
  184. @property(nonatomic, readwrite) SVGAProtoShapeEntity_ShapeType type;
  185. @property(nonatomic, readonly) SVGAProtoShapeEntity_Args_OneOfCase argsOneOfCase;
  186. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoShapeEntity_ShapeArgs *shape;
  187. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoShapeEntity_RectArgs *rect;
  188. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoShapeEntity_EllipseArgs *ellipse;
  189. /** 渲染参数 */
  190. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoShapeEntity_ShapeStyle *styles;
  191. /** Test to see if @c styles has been set. */
  192. @property(nonatomic, readwrite) BOOL hasStyles;
  193. /** 矢量图层 2D 变换矩阵 */
  194. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoTransform *transform;
  195. /** Test to see if @c transform has been set. */
  196. @property(nonatomic, readwrite) BOOL hasTransform;
  197. @end
  198. /**
  199. * Fetches the raw value of a @c SVGAProtoShapeEntity's @c type property, even
  200. * if the value was not defined by the enum at the time the code was generated.
  201. **/
  202. int32_t SVGAProtoShapeEntity_Type_RawValue(SVGAProtoShapeEntity *message);
  203. /**
  204. * Sets the raw value of an @c SVGAProtoShapeEntity's @c type property, allowing
  205. * it to be set to a value that was not defined by the enum at the time the code
  206. * was generated.
  207. **/
  208. void SetSVGAProtoShapeEntity_Type_RawValue(SVGAProtoShapeEntity *message, int32_t value);
  209. /**
  210. * Clears whatever value was set for the oneof 'args'.
  211. **/
  212. void SVGAProtoShapeEntity_ClearArgsOneOfCase(SVGAProtoShapeEntity *message);
  213. #pragma mark - SVGAProtoShapeEntity_ShapeArgs
  214. typedef GPB_ENUM(SVGAProtoShapeEntity_ShapeArgs_FieldNumber) {
  215. SVGAProtoShapeEntity_ShapeArgs_FieldNumber_D = 1,
  216. };
  217. @interface SVGAProtoShapeEntity_ShapeArgs : GPBMessage
  218. /** SVG 路径 */
  219. @property(nonatomic, readwrite, copy, null_resettable) NSString *d;
  220. @end
  221. #pragma mark - SVGAProtoShapeEntity_RectArgs
  222. typedef GPB_ENUM(SVGAProtoShapeEntity_RectArgs_FieldNumber) {
  223. SVGAProtoShapeEntity_RectArgs_FieldNumber_X = 1,
  224. SVGAProtoShapeEntity_RectArgs_FieldNumber_Y = 2,
  225. SVGAProtoShapeEntity_RectArgs_FieldNumber_Width = 3,
  226. SVGAProtoShapeEntity_RectArgs_FieldNumber_Height = 4,
  227. SVGAProtoShapeEntity_RectArgs_FieldNumber_CornerRadius = 5,
  228. };
  229. @interface SVGAProtoShapeEntity_RectArgs : GPBMessage
  230. @property(nonatomic, readwrite) float x;
  231. @property(nonatomic, readwrite) float y;
  232. @property(nonatomic, readwrite) float width;
  233. @property(nonatomic, readwrite) float height;
  234. /** 圆角半径 */
  235. @property(nonatomic, readwrite) float cornerRadius;
  236. @end
  237. #pragma mark - SVGAProtoShapeEntity_EllipseArgs
  238. typedef GPB_ENUM(SVGAProtoShapeEntity_EllipseArgs_FieldNumber) {
  239. SVGAProtoShapeEntity_EllipseArgs_FieldNumber_X = 1,
  240. SVGAProtoShapeEntity_EllipseArgs_FieldNumber_Y = 2,
  241. SVGAProtoShapeEntity_EllipseArgs_FieldNumber_RadiusX = 3,
  242. SVGAProtoShapeEntity_EllipseArgs_FieldNumber_RadiusY = 4,
  243. };
  244. @interface SVGAProtoShapeEntity_EllipseArgs : GPBMessage
  245. /** 圆中心点 X */
  246. @property(nonatomic, readwrite) float x;
  247. /** 圆中心点 Y */
  248. @property(nonatomic, readwrite) float y;
  249. /** 横向半径 */
  250. @property(nonatomic, readwrite) float radiusX;
  251. /** 纵向半径 */
  252. @property(nonatomic, readwrite) float radiusY;
  253. @end
  254. #pragma mark - SVGAProtoShapeEntity_ShapeStyle
  255. typedef GPB_ENUM(SVGAProtoShapeEntity_ShapeStyle_FieldNumber) {
  256. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_Fill = 1,
  257. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_Stroke = 2,
  258. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_StrokeWidth = 3,
  259. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_LineCap = 4,
  260. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_LineJoin = 5,
  261. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_MiterLimit = 6,
  262. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_LineDashI = 7,
  263. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_LineDashIi = 8,
  264. SVGAProtoShapeEntity_ShapeStyle_FieldNumber_LineDashIii = 9,
  265. };
  266. @interface SVGAProtoShapeEntity_ShapeStyle : GPBMessage
  267. /** 填充色 */
  268. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoShapeEntity_ShapeStyle_RGBAColor *fill;
  269. /** Test to see if @c fill has been set. */
  270. @property(nonatomic, readwrite) BOOL hasFill;
  271. /** 描边色 */
  272. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoShapeEntity_ShapeStyle_RGBAColor *stroke;
  273. /** Test to see if @c stroke has been set. */
  274. @property(nonatomic, readwrite) BOOL hasStroke;
  275. /** 描边宽 */
  276. @property(nonatomic, readwrite) float strokeWidth;
  277. /** 线段端点样式 */
  278. @property(nonatomic, readwrite) SVGAProtoShapeEntity_ShapeStyle_LineCap lineCap;
  279. /** 线段连接样式 */
  280. @property(nonatomic, readwrite) SVGAProtoShapeEntity_ShapeStyle_LineJoin lineJoin;
  281. /** 尖角限制 */
  282. @property(nonatomic, readwrite) float miterLimit;
  283. /** 虚线参数 Dash */
  284. @property(nonatomic, readwrite) float lineDashI;
  285. /** 虚线参数 Gap */
  286. @property(nonatomic, readwrite) float lineDashIi;
  287. /** 虚线参数 Offset */
  288. @property(nonatomic, readwrite) float lineDashIii;
  289. @end
  290. /**
  291. * Fetches the raw value of a @c SVGAProtoShapeEntity_ShapeStyle's @c lineCap property, even
  292. * if the value was not defined by the enum at the time the code was generated.
  293. **/
  294. int32_t SVGAProtoShapeEntity_ShapeStyle_LineCap_RawValue(SVGAProtoShapeEntity_ShapeStyle *message);
  295. /**
  296. * Sets the raw value of an @c SVGAProtoShapeEntity_ShapeStyle's @c lineCap property, allowing
  297. * it to be set to a value that was not defined by the enum at the time the code
  298. * was generated.
  299. **/
  300. void SetSVGAProtoShapeEntity_ShapeStyle_LineCap_RawValue(SVGAProtoShapeEntity_ShapeStyle *message, int32_t value);
  301. /**
  302. * Fetches the raw value of a @c SVGAProtoShapeEntity_ShapeStyle's @c lineJoin property, even
  303. * if the value was not defined by the enum at the time the code was generated.
  304. **/
  305. int32_t SVGAProtoShapeEntity_ShapeStyle_LineJoin_RawValue(SVGAProtoShapeEntity_ShapeStyle *message);
  306. /**
  307. * Sets the raw value of an @c SVGAProtoShapeEntity_ShapeStyle's @c lineJoin property, allowing
  308. * it to be set to a value that was not defined by the enum at the time the code
  309. * was generated.
  310. **/
  311. void SetSVGAProtoShapeEntity_ShapeStyle_LineJoin_RawValue(SVGAProtoShapeEntity_ShapeStyle *message, int32_t value);
  312. #pragma mark - SVGAProtoShapeEntity_ShapeStyle_RGBAColor
  313. typedef GPB_ENUM(SVGAProtoShapeEntity_ShapeStyle_RGBAColor_FieldNumber) {
  314. SVGAProtoShapeEntity_ShapeStyle_RGBAColor_FieldNumber_R = 1,
  315. SVGAProtoShapeEntity_ShapeStyle_RGBAColor_FieldNumber_G = 2,
  316. SVGAProtoShapeEntity_ShapeStyle_RGBAColor_FieldNumber_B = 3,
  317. SVGAProtoShapeEntity_ShapeStyle_RGBAColor_FieldNumber_A = 4,
  318. };
  319. @interface SVGAProtoShapeEntity_ShapeStyle_RGBAColor : GPBMessage
  320. @property(nonatomic, readwrite) float r;
  321. @property(nonatomic, readwrite) float g;
  322. @property(nonatomic, readwrite) float b;
  323. @property(nonatomic, readwrite) float a;
  324. @end
  325. #pragma mark - SVGAProtoFrameEntity
  326. typedef GPB_ENUM(SVGAProtoFrameEntity_FieldNumber) {
  327. SVGAProtoFrameEntity_FieldNumber_Alpha = 1,
  328. SVGAProtoFrameEntity_FieldNumber_Layout = 2,
  329. SVGAProtoFrameEntity_FieldNumber_Transform = 3,
  330. SVGAProtoFrameEntity_FieldNumber_ClipPath = 4,
  331. SVGAProtoFrameEntity_FieldNumber_ShapesArray = 5,
  332. };
  333. @interface SVGAProtoFrameEntity : GPBMessage
  334. /** 透明度 */
  335. @property(nonatomic, readwrite) float alpha;
  336. /** 初始约束大小 */
  337. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoLayout *layout;
  338. /** Test to see if @c layout has been set. */
  339. @property(nonatomic, readwrite) BOOL hasLayout;
  340. /** 2D 变换矩阵 */
  341. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoTransform *transform;
  342. /** Test to see if @c transform has been set. */
  343. @property(nonatomic, readwrite) BOOL hasTransform;
  344. /** 遮罩路径,使用 SVG 标准 Path 绘制图案进行 Mask 遮罩。 */
  345. @property(nonatomic, readwrite, copy, null_resettable) NSString *clipPath;
  346. /** 矢量元素列表 */
  347. @property(nonatomic, readwrite, strong, null_resettable) NSMutableArray<SVGAProtoShapeEntity*> *shapesArray;
  348. /** The number of items in @c shapesArray without causing the array to be created. */
  349. @property(nonatomic, readonly) NSUInteger shapesArray_Count;
  350. @end
  351. #pragma mark - SVGAProtoMovieEntity
  352. typedef GPB_ENUM(SVGAProtoMovieEntity_FieldNumber) {
  353. SVGAProtoMovieEntity_FieldNumber_Version = 1,
  354. SVGAProtoMovieEntity_FieldNumber_Params = 2,
  355. SVGAProtoMovieEntity_FieldNumber_Images = 3,
  356. SVGAProtoMovieEntity_FieldNumber_SpritesArray = 4,
  357. };
  358. @interface SVGAProtoMovieEntity : GPBMessage
  359. /** SVGA 格式版本号 */
  360. @property(nonatomic, readwrite, copy, null_resettable) NSString *version;
  361. /** 动画参数 */
  362. @property(nonatomic, readwrite, strong, null_resettable) SVGAProtoMovieParams *params;
  363. /** Test to see if @c params has been set. */
  364. @property(nonatomic, readwrite) BOOL hasParams;
  365. /** Key 是位图键名,Value 是位图文件名或二进制 PNG 数据。 */
  366. @property(nonatomic, readwrite, strong, null_resettable) NSMutableDictionary<NSString*, NSData*> *images;
  367. /** The number of items in @c images without causing the array to be created. */
  368. @property(nonatomic, readonly) NSUInteger images_Count;
  369. /** 元素列表 */
  370. @property(nonatomic, readwrite, strong, null_resettable) NSMutableArray<SVGAProtoSpriteEntity*> *spritesArray;
  371. /** The number of items in @c spritesArray without causing the array to be created. */
  372. @property(nonatomic, readonly) NSUInteger spritesArray_Count;
  373. @end
  374. NS_ASSUME_NONNULL_END
  375. CF_EXTERN_C_END
  376. #pragma clang diagnostic pop
  377. // @@protoc_insertion_point(global_scope)