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,15 @@
using UnityEngine;
public class OfficeTable : BaseInteractableObject
{
[SerializeField]
private JobsListSO _jobPositionsSO;
public override void Interact(Player player)
{
print("Interact with office table");
}
}