added tooltips
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user