Incediary Shells (#6208)

Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
This commit is contained in:
ScalyChimp
2022-01-30 13:44:45 +00:00
committed by GitHub
parent 45c0862394
commit 004c678853
10 changed files with 107 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
using Robust.Shared.GameObjects;
using Robust.Shared.Serialization.Manager.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Content.Server.Atmos.Components
{
[RegisterComponent]
public class IgniteOnCollideComponent : Component
{
public override string Name => "IgniteOnCollide";
[DataField("fireStacks")]
public float FireStacks { get; set; }
}
}