612b793677
Enable job offer according to Player education
12 lines
252 B
C#
12 lines
252 B
C#
using UnityEngine;
|
|
|
|
[CreateAssetMenu()]
|
|
public class JobInfoSO : ScriptableObject
|
|
{
|
|
public string Description;
|
|
public float Salary;
|
|
public Sprite Icon;
|
|
public JobPositions JobPosition;
|
|
public EducationSkill MinimumEducationSkill;
|
|
}
|