Пример #1
0
 public static void SetCommentReceiveDelegate(QGameKit.CommentReceiveDelegate commentDelegate)
 {
     if (QGameKit.QGameKitObj == null)
     {
         Debug.LogError("QGameKitObj is null!");
         return;
     }
     QGameKit.QGameKitObj.SetCommentReceiveDelegete(commentDelegate);
 }
Пример #2
0
 public CommentReceiveCallback(QGameKit.CommentReceiveDelegate mDelegate) : base("com.tencent.qgame.livesdk.bridge.CommentReceiveListener")
 {
     this.commentDelegate = mDelegate;
 }