Files
RaindropViewer/Assets/Raindrop/Notification/Notification.cs
T
2022-03-28 21:29:45 +08:00

31 lines
579 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
namespace Raindrop.UI.Notification
{
//in-game notifications
//such as.
// 1. unread IM
// 2. object returns
// 3. friend request
// 4. etc.
class Notification
{
public Notification()
{
}
//raise the notification.
public static void DisplayNotification(string msg, ChatBufferTextStyle statusDarkBlue)
{
Debug.Log(msg);
}
}
}