mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-19 06:28:40 +03:00
* Harpy Rebalance * Update meta.json Signed-off-by: VMSolidus <evilexecutive@gmail.com> * Update harpy.yml Signed-off-by: VMSolidus <evilexecutive@gmail.com> * revert piercing and also revert felinid melee by request --------- Signed-off-by: VMSolidus <evilexecutive@gmail.com>
18 lines
301 B
C#
18 lines
301 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.DeltaV.Harpy.Components
|
|
{
|
|
[Serializable, NetSerializable]
|
|
public enum HarpyVisualLayers
|
|
{
|
|
Singing,
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public enum SingingVisualLayer
|
|
{
|
|
True,
|
|
False,
|
|
}
|
|
}
|