16 lines
245 B
C#
16 lines
245 B
C#
using UnityEngine;
|
|
|
|
public class OfficeTable : BaseInteractableObject
|
|
{
|
|
[SerializeField]
|
|
private JobsListSO _jobPositionsSO;
|
|
|
|
|
|
public override void Interact(Player player)
|
|
{
|
|
print("Interact with office table");
|
|
}
|
|
|
|
|
|
}
|