mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
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; }
|
|
}
|
|
}
|