Files
tbd-station-14/Content.Server/Interfaces/GameObjects/Components/Temperature/ITemperatureComponent.cs
Pieter-Jan Briers 6f89d0672d Urist's damage and health thing. (#10)
* Add prototype for temperature testing entity.

* Add Damageable, Destructible, Temperature. Add a prototype based on those.

* Works and cleaned up.

* Nerf
2017-10-07 15:15:29 +02:00

10 lines
205 B
C#

using SS14.Shared.Interfaces.GameObjects;
namespace Content.Server.Interfaces.GameObjects
{
public interface ITemperatureComponent : IComponent
{
float CurrentTemperature { get; }
}
}