13 lines
272 B
C#
13 lines
272 B
C#
using Assets.Scripts.Interfaces;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu()]
|
|
public class EducationInfoSO : IDialogOption
|
|
{
|
|
public string Description;
|
|
public int Duration;
|
|
public float EnrollPrice;
|
|
public EducationSkill Skill;
|
|
public int PlayerProgress;
|
|
}
|