Files
K-C-Multiplayer/Attributes/NoServerRelayAttribute.cs
2025-12-13 19:12:53 +01:00

11 lines
177 B
C#

using System;
namespace KCM.Attributes
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public class NoServerRelayAttribute : Attribute
{
}
}