2019-03-27 17:29:06 +05:00
|
|
|
|
using System;
|
2019-04-15 21:11:38 -06:00
|
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
2019-03-27 17:29:06 +05:00
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.GameObjects.Components.Mobs
|
|
|
|
|
|
{
|
|
|
|
|
|
public abstract class SharedSpeciesComponent : Component
|
|
|
|
|
|
{
|
|
|
|
|
|
public sealed override string Name => "Species";
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum MobVisuals
|
|
|
|
|
|
{
|
|
|
|
|
|
RotationState
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
|
|
|
|
public enum MobState
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Mob is standing up
|
|
|
|
|
|
/// </summary>
|
2020-05-13 19:04:50 +02:00
|
|
|
|
Standing,
|
2019-03-27 17:29:06 +05:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Mob is laying down
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Down,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2019-03-27 17:12:43 +01:00
|
|
|
|
}
|