2021-01-11 00:17:28 +01:00
|
|
|
|
using System.Threading.Tasks;
|
2021-06-09 22:19:39 +02:00
|
|
|
|
using Content.Shared.Interaction;
|
|
|
|
|
|
using Content.Shared.Smoking;
|
2021-01-11 00:17:28 +01:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
|
namespace Content.Server.Light.Components
|
2021-01-11 00:17:28 +01:00
|
|
|
|
{
|
|
|
|
|
|
// TODO make changes in icons when different threshold reached
|
|
|
|
|
|
// e.g. different icons for 10% 50% 100%
|
|
|
|
|
|
[RegisterComponent]
|
2021-08-18 23:17:47 +02:00
|
|
|
|
public class MatchboxComponent : Component
|
2021-01-11 00:17:28 +01:00
|
|
|
|
{
|
|
|
|
|
|
public override string Name => "Matchbox";
|
|
|
|
|
|
}
|
2021-02-04 17:44:49 +01:00
|
|
|
|
}
|