Files
real-shooter/Assets/Scripts/Sensors/ISensor.cs
2022-04-12 11:54:05 +07:00

6 lines
91 B
C#
Executable File

public interface ISensor<T>
{
T GetValue();
SensorType GetSensorType();
}