Options Dialog refactor for more generic

This commit is contained in:
Vova
2023-12-18 21:22:43 +02:00
parent 554c147a69
commit 2399e99c68
42 changed files with 778 additions and 199 deletions
@@ -0,0 +1,10 @@
using Assets.Scripts.Interfaces;
using UnityEngine;
[CreateAssetMenu()]
public class EducationInfoSO : IDialogOption
{
public string Description;
public float Price;
public EducationSkill Skill;
}