Files
SimUL/Assets/Scripts/Actions/Work.cs
T
2022-08-17 11:14:32 +03:00

18 lines
499 B
C#

namespace Assets.Scripts.Actions
{
public class Work : BaseAction
{
private PlayerController playerController;
private int energyPerTick;
public Work(PlayerController player, int duration, int energyPerTick) : base(duration)
{
this.playerController = player;
this.energyPerTick = energyPerTick;
}
public override void ConsumeTick()
{
throw new System.NotImplementedException();
}
}
}