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(); } } }