Files
LuaCsForBarotraumaEP/Libraries/BarotraumaLibs/EosInterface/Friends/EgsFriend.cs
2024-03-28 18:34:33 +02:00

13 lines
298 B
C#

using Barotrauma.Networking;
namespace Barotrauma;
public static partial class EosInterface
{
public readonly record struct EgsFriend(
string DisplayName,
EpicAccountId EpicAccountId,
FriendStatus Status,
string ConnectCommand,
string ServerName);
}