better plan stats
This commit is contained in:
21
Assets/Engine/Runtime/Measurements/PlanResult.cs
Normal file
21
Assets/Engine/Runtime/Measurements/PlanResult.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using JetBrains.Annotations;
|
||||
using Realms;
|
||||
|
||||
namespace EscapeRoomEngine.Engine.Runtime.Measurements
|
||||
{
|
||||
public class PlanResult : EmbeddedObject
|
||||
{
|
||||
public float TargetTime { get; set; }
|
||||
public float SectionPercentile { get; set; }
|
||||
public float TimeEstimation { get; set; }
|
||||
|
||||
[UsedImplicitly]
|
||||
public PlanResult() {}
|
||||
public PlanResult(float targetTime, float sectionPercentile, float timeEstimation)
|
||||
{
|
||||
TargetTime = targetTime;
|
||||
SectionPercentile = sectionPercentile;
|
||||
TimeEstimation = timeEstimation;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user