GameDev.CoreSystems/Interfaces/IPowerSystem.cs

18 lines
345 B
C#

namespace AsteroidGame.CoreSystems
{
public interface IPowerSystem
{
public bool IsGenerator { get; }
public bool IsConsumer { get; }
public void SetMaxPower(int newValue);
public int GetMaxPower();
public int GetCurrentPower();
public float GetPowerFactor();
}
}