namespace AsteroidGame.Interfaces { 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(); } }