feat: Updates tracking state of sensors

This commit is contained in:
2024-11-20 22:45:20 -05:00
parent c4c4fed4bc
commit 061785d77b

View File

@@ -65,9 +65,9 @@ public struct TrackedChanges<Value: Sendable>: Sendable {
} }
/// Whether the value needs processed. /// Whether the value needs processed.
public var needsProcessed: Bool { value.needsProcessed } var needsProcessed: Bool { value.needsProcessed }
public mutating func setHasProcessed() { mutating func setHasProcessed() {
value = .hasProcessed(value.currentValue) value = .hasProcessed(value.currentValue)
} }