Files
DRHPS/code-csharp/CHATBOXREACTION.cs
2025-04-05 21:18:15 +08:00

9 lines
291 B
C#

using UnityEngine;
[CreateAssetMenu(fileName = "REACTION", menuName = "Deltaswap/ChatboxReaction", order = 0)]
public class CHATBOXREACTION : ScriptableObject
{
[Header("Each reaction is shown in sequential order, starting from the top.")]
public REACTIONDATA[] Reaction;
}