18 lines
499 B
C#
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();
|
|
}
|
|
}
|
|
}
|