Buttons and job system

This commit is contained in:
Vladimir Koshevarov
2023-03-14 17:05:51 +02:00
parent 582f0e393e
commit 84e227d167
38 changed files with 1682 additions and 10250 deletions
@@ -0,0 +1,9 @@
using System.Collections.Generic;
using UnityEngine;
[CreateAssetMenu()]
public class JobsListSO : ScriptableObject
{
public string Place;
public List<JobInfoSO> JobPositionsList;
}