Files
OldThink/Content.Server/Light/Components/MatchboxComponent.cs

15 lines
379 B
C#
Raw Normal View History

using System.Threading.Tasks;
2021-06-09 22:19:39 +02:00
using Content.Shared.Interaction;
using Content.Shared.Smoking;
using Robust.Shared.GameObjects;
2021-06-09 22:19:39 +02:00
namespace Content.Server.Light.Components
{
// TODO make changes in icons when different threshold reached
// e.g. different icons for 10% 50% 100%
[RegisterComponent]
public sealed class MatchboxComponent : Component
{
}
2021-02-04 17:44:49 +01:00
}