Files
Darklings-FightingGame/Assets/_Project/Scripts/NetworkScripts/Stun/Attributes/StunMappedAddressAttribute.cs
2023-01-01 12:50:59 +02:00

17 lines
358 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace STUN.Attributes
{
public class STUNMappedAddressAttribute : STUNEndPointAttribute
{
public override string ToString()
{
return string.Format("MAPPED-ADDRESS {0}", EndPoint);
}
}
}