Snaparazzi/Assets/Scripts/PromptList.cs
2024-01-27 19:58:02 +01:00

23 lines
535 B
C#

using System;
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu(fileName = "PromptList", menuName = "ScriptableObjects/Prompt List", order = 1)]
public class PromptList : ScriptableObject
{
public List<Prompt> prompts = new();
/// <summary>
/// Create a new entry with a unique ID
/// </summary>
[ContextMenu("Create Entry")]
private void CreateEntry()
{
Prompt temp = new()
{
id = Guid.NewGuid().ToString()
};
prompts.Add(temp);
}
}