Change state timestamp to double precision.

This commit is contained in:
2022-12-19 14:55:15 +08:00
parent e55642cdeb
commit d7b0ca77e9
9 changed files with 40 additions and 40 deletions

View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
namespace Cryville.Crtr.Event {
public class EventBatch : IComparable<EventBatch>, IEnumerable<StampedEvent> {
public float Time {
public double Time {
get;
private set;
}
@@ -14,7 +14,7 @@ namespace Cryville.Crtr.Event {
get { return queue.Count; }
}
public EventBatch(float time) {
public EventBatch(double time) {
Time = time;
}
@@ -32,7 +32,7 @@ namespace Cryville.Crtr.Event {
}
public int CompareTo(EventBatch other) {
return this.Time.CompareTo(other.Time);
return Time.CompareTo(other.Time);
}
public IEnumerator<StampedEvent> GetEnumerator() {