added tooltips
This commit is contained in:
@@ -1,8 +0,0 @@
|
||||
|
||||
namespace Assets.Scripts.Actions.Interfaces
|
||||
{
|
||||
internal interface ISellableItem
|
||||
{
|
||||
public float Price { get; }
|
||||
}
|
||||
}
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 11ca03325bf76704b91eb2f9b2fafec9
|
||||
guid: 5b7ba6deb189bc44ca6f628a799c8667
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
Reference in New Issue
Block a user