14 lines
367 B
C#
14 lines
367 B
C#
namespace Content.Server.Atmos
|
|
{
|
|
public sealed class ExcitedGroup
|
|
{
|
|
[ViewVariables] public bool Disposed = false;
|
|
|
|
[ViewVariables] public readonly List<TileAtmosphere> Tiles = new(100);
|
|
|
|
[ViewVariables] public int DismantleCooldown { get; set; } = 0;
|
|
|
|
[ViewVariables] public int BreakdownCooldown { get; set; } = 0;
|
|
}
|
|
}
|