DCS/ruiyiweiUX/Assets/Scripts/Services/IDataService.cs

17 lines
418 B
C#
Raw Permalink Normal View History

2026-06-09 13:59:11 +08:00
using System;
public interface IDataService : IService
{
event Action<float> OnBFIValueUpdated;
// event Action<float> OnBloodFlowValueUpdated;
// event Action<float> OnBatteryLevelUpdated;
float CurrentBFI { get; }
float CurrentBloodFlow { get; }
float CurrentBatteryLevel { get; }
bool IsCollecting { get; }
void StartDataCollection();
void StopDataCollection();
}