14 lines
333 B
C#
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; }
|
|
}
|
|
}
|