Files
modular-vr/Assets/Engine/Runtime/Measurements/PlanResult.cs
2022-12-16 08:59:20 +01:00

21 lines
609 B
C#

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;
}
}
}