* Add prototype for temperature testing entity. * Add Damageable, Destructible, Temperature. Add a prototype based on those. * Works and cleaned up. * Nerf
10 lines
205 B
C#
10 lines
205 B
C#
using SS14.Shared.Interfaces.GameObjects;
|
|
|
|
namespace Content.Server.Interfaces.GameObjects
|
|
{
|
|
public interface ITemperatureComponent : IComponent
|
|
{
|
|
float CurrentTemperature { get; }
|
|
}
|
|
}
|