10 lines
207 B
C#
10 lines
207 B
C#
using Robust.Shared.Interfaces.GameObjects;
|
|
|
|
namespace Content.Server.Interfaces.GameObjects
|
|
{
|
|
public interface ITemperatureComponent : IComponent
|
|
{
|
|
float CurrentTemperature { get; }
|
|
}
|
|
}
|