c8047bd170
add food indicator
18 lines
540 B
C#
18 lines
540 B
C#
namespace Assets.Scripts.Actions
|
|
{
|
|
public class Work : BaseAction
|
|
{
|
|
private PlayerManager playerController;
|
|
private int energyPerTick;
|
|
public Work(PlayerManager player, int duration, int energyPerTick) : base(duration)
|
|
{
|
|
this.playerController = player;
|
|
this.energyPerTick = energyPerTick;
|
|
}
|
|
public override void ApplyAction(PlayerManager playerController)
|
|
{
|
|
throw new System.NotImplementedException();
|
|
}
|
|
}
|
|
}
|