This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
mochapine64backup/MoCha/Assets/SimpleAndroidNotifications/NotificationParams.cs

26 lines
No EOL
854 B
C#

using System;
using UnityEngine;
namespace Assets.SimpleAndroidNotifications
{
public class NotificationParams
{
/// <summary>
/// Use random id for each new notification.
/// </summary>
public int Id;
public TimeSpan Delay;
public string Title;
public string Message;
public string Ticker;
public bool Sound = true;
public bool Vibrate = true;
public bool Light = true;
public NotificationIcon SmallIcon;
public Color SmallIconColor;
/// <summary>
/// Use "" for simple notification. Use "app_icon" to use the app icon. Use custom value but first place image to "simple-android-notifications.aar/res/". To modify "aar" file just rename it to "zip" and back.
/// </summary>
public string LargeIcon;
}
}