Options Dialog refactor for more generic
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Assets.Scripts.Interfaces
|
||||
{
|
||||
public interface IDialogItemUI
|
||||
{
|
||||
void SetItem(DialogOptionsUI parent, IDialogOption item);
|
||||
}
|
||||
public class IDialogOption: ScriptableObject
|
||||
{
|
||||
public Sprite Icon;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user