12 lines
422 B
C#
12 lines
422 B
C#
using System;
|
|
using NitroxModel.DataStructures.Unity;
|
|
|
|
namespace NitroxServer.Resources;
|
|
|
|
|
|
[Serializable]
|
|
/// <param name="PrefabAssets">
|
|
/// All attached PrefabPlaceholders (and PrefabPlaceholdersGroup). Is in sync with PrefabPlaceholdersGroup.prefabPlaceholders
|
|
/// </param>
|
|
public record struct PrefabPlaceholdersGroupAsset(string ClassId, IPrefabAsset[] PrefabAssets, NitroxTransform Transform = null) : IPrefabAsset;
|