Files
SimUL/Assets/Scripts/Actions/Interfaces/Interfaces.cs
T
Vladimir Koshevarov 73f06d8754 added tooltips
2022-11-29 19:09:00 +02:00

21 lines
446 B
C#

namespace Assets.Scripts.Actions.Interfaces
{
public enum JobId { Unemployed, HotDogs };
public interface IPlayerAction
{
public string Description { get; }
public void ApplyAction(PlayerManager player);
}
public interface ISellable
{
public decimal Price { get; }
}
public interface IWorkPlace
{
public JobId JobID { get; }
public decimal Sallary { get; }
}
}