2022-08-08 10:18:14 +10:00
|
|
|
using Robust.Shared.GameStates;
|
2024-06-02 16:08:15 +12:00
|
|
|
using Robust.Shared.Prototypes;
|
2022-08-08 10:18:14 +10:00
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Dragon;
|
|
|
|
|
|
2024-06-02 16:08:15 +12:00
|
|
|
[NetworkedComponent, EntityCategory("Spawner")]
|
2023-08-22 18:14:33 -07:00
|
|
|
public abstract partial class SharedDragonRiftComponent : Component
|
2022-08-08 10:18:14 +10:00
|
|
|
{
|
2022-11-16 20:22:11 +01:00
|
|
|
[DataField("state")]
|
2022-08-08 10:18:14 +10:00
|
|
|
public DragonRiftState State = DragonRiftState.Charging;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
public enum DragonRiftState : byte
|
|
|
|
|
{
|
|
|
|
|
Charging,
|
|
|
|
|
AlmostFinished,
|
|
|
|
|
Finished,
|
|
|
|
|
}
|