NTESJanKenPonAttachment.h 611 B

123456789101112131415161718192021222324
  1. //
  2. // NTESJanKenPonAttachment.h
  3. // NIM
  4. //
  5. // Created by amao on 7/2/15.
  6. // Copyright (c) 2015 Netease. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "NTESCustomAttachmentDefines.h"
  10. typedef NS_ENUM(NSInteger, CustomJanKenPonValue) {
  11. CustomJanKenPonValueKen = 1,//石头
  12. CustomJanKenPonValueJan = 2,//剪子
  13. CustomJanKenPonValuePon = 3,//布
  14. };
  15. @interface NTESJanKenPonAttachment : NSObject<NIMCustomAttachment,NTESCustomAttachmentInfo>
  16. @property (nonatomic,assign) CustomJanKenPonValue value;
  17. @property (nonatomic,strong) UIImage *showCoverImage;
  18. @end