- add: Clippy

This commit is contained in:
Jabkas
2024-04-16 20:40:28 +03:00
parent 8a176945bd
commit 0d2e7dda61
14 changed files with 541 additions and 8 deletions

View 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;
}