RustDedicated/Rust.Platform.Common/IPlayerInfo.cs
2025-05-25 05:29:54 +09:30

16 lines
221 B
C#

public interface IPlayerInfo
{
ulong UserId { get; }
string UserName { get; }
bool IsOnline { get; }
bool IsMe { get; }
bool IsFriend { get; }
bool IsPlayingThisGame { get; }
string ServerEndpoint { get; }
}