mirror of
https://github.com/RaindropViewer/RaindropViewer.git
synced 2026-07-29 19:03:10 +00:00
31 lines
579 B
C#
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);
|
|
}
|
|
}
|
|
}
|