namespace vnxbqy.UI
|
{
|
public static class ChatBubbleHelper
|
{
|
static PhantasmPavilionModel model { get { return ModelCenter.Instance.GetModel<PhantasmPavilionModel>(); } }
|
|
public static int GetOtherChatBubbleID(int nowID)
|
{
|
return model.GetNowOtherChatBubbleID(nowID);
|
}
|
|
public static int GetMyChatBubbleID()
|
{
|
return model.GetNowChatBubbleID();
|
}
|
|
public static int GetChatBubbleDefaultID()
|
{
|
model.TryGetDefaultID(PhantasmPavilionTab.ChatBubble, 0, out int defaultID);
|
return defaultID;
|
}
|
}
|
}
|