Files
Nitrox/NitroxClient/GameLogic/PlayerLogic/PlayerModel/Abstract/INitroxPlayer.cs
2025-07-06 00:23:46 +02:00

14 lines
333 B
C#

using NitroxModel.MultiplayerSession;
using UnityEngine;
namespace NitroxClient.GameLogic.PlayerLogic.PlayerModel.Abstract
{
public interface INitroxPlayer
{
GameObject Body { get; }
GameObject PlayerModel { get; }
string PlayerName { get; }
PlayerSettings PlayerSettings { get; }
}
}