- add: Clippy
This commit is contained in:
18
Content.Shared/_Amour/Tips/ClippyEvent.cs
Normal file
18
Content.Shared/_Amour/Tips/ClippyEvent.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using Robust.Shared.Serialization;
|
||||
|
||||
namespace Content.Shared._Amour.Tips;
|
||||
|
||||
[Serializable, NetSerializable]
|
||||
public sealed class ClippyEvent : EntityEventArgs
|
||||
{
|
||||
public ClippyEvent(string msg)
|
||||
{
|
||||
Msg = msg;
|
||||
}
|
||||
|
||||
public string Msg;
|
||||
public string? Proto;
|
||||
public float SpeakTime = 5;
|
||||
public float SlideTime = 3;
|
||||
public float WaddleInterval = 0.5f;
|
||||
}
|
||||
Reference in New Issue
Block a user