diff --git a/osu.Game/Utils/PowerStatus.cs b/osu.Game/Utils/PowerStatus.cs
index a53f50b620..46f7e32b9e 100644
--- a/osu.Game/Utils/PowerStatus.cs
+++ b/osu.Game/Utils/PowerStatus.cs
@@ -12,14 +12,14 @@ namespace osu.Game.Utils
///
/// The maximum battery level considered as low, from 0 to 1.
///
- public virtual double BatteryCutoff { get; } = 0;
+ public abstract double BatteryCutoff { get; }
///
/// The charge level of the battery, from 0 to 1.
///
- public virtual double ChargeLevel { get; } = 0;
+ public abstract double ChargeLevel { get; }
- public virtual bool IsCharging { get; } = false;
+ public abstract bool IsCharging { get; }
///
/// Whether the battery is currently low in charge.