using System.Collections;
using System.Collections.Generic;
using TMPro;
using UnityEngine;
using UnityEngine.UI;
///
/// 好友聊天
///
public class FriendChatBubble : MonoBehaviour
{
///
/// 气泡发言名称
///
public TMP_Text username;
///
/// 气泡发言内容
///
public TMP_Text user_content;
///
/// 气泡头像
///
public RawImage avatarImage;
}