10 lines
202 B
C#
10 lines
202 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Dragon;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class DragonRiftComponentState : ComponentState
|
|
{
|
|
public DragonRiftState State;
|
|
}
|