15 lines
No EOL
285 B
C#
15 lines
No EOL
285 B
C#
// Inspired by Nyanotrasen
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.HyperLink;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class OpenURLEvent : EntityEventArgs
|
|
{
|
|
public string URL { get; }
|
|
public OpenURLEvent(string url)
|
|
{
|
|
URL = url;
|
|
}
|
|
} |