initial upload

This commit is contained in:
tom.hempel
2025-09-30 17:58:33 +02:00
commit 69b0c79692
4818 changed files with 229318 additions and 0 deletions

View File

@ -0,0 +1,18 @@
using UnityEngine;
namespace Convai.Scripts.Runtime.Addons
{
/// <summary>
/// Represents a group of notifications as a ScriptableObject.
/// This allows for easy configuration and management of different notifications in the Unity Editor.
/// </summary>
[CreateAssetMenu(menuName = "Convai/Notification System/Notification Group", fileName = "New Notification Group")]
public class SONotificationGroup : ScriptableObject
{
/// <summary>
/// Array of SONotification objects.
/// Each object represents a unique notification that can be triggered in the application.
/// </summary>
public SONotification[] SONotifications;
}
}