TippyEvent.cs 373 B

12345678910111213141516171819
  1. using Robust.Shared.Serialization;
  2. namespace Content.Shared.Tips;
  3. [Serializable, NetSerializable]
  4. public sealed class TippyEvent : EntityEventArgs
  5. {
  6. public TippyEvent(string msg)
  7. {
  8. Msg = msg;
  9. }
  10. public string Msg;
  11. public string? Proto;
  12. public float SpeakTime = 5;
  13. public float SlideTime = 3;
  14. public float WaddleInterval = 0.5f;
  15. }