Files
2025-07-06 00:23:46 +02:00

8 lines
168 B
C#

namespace NitroxClient.GameLogic.PlayerLogic.PlayerModel.Abstract
{
public interface IPlayerModelBuilder
{
void Build(INitroxPlayer player);
}
}