Options Dialog refactor for more generic
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
using Assets.Scripts.Interfaces;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu()]
|
||||
public class DialogCategorySO : ScriptableObject
|
||||
{
|
||||
public string Title;
|
||||
public Sprite Icon;
|
||||
public List<IDialogOption> OptionsList;
|
||||
}
|
||||
Reference in New Issue
Block a user