You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
457 B
C#
16 lines
457 B
C#
using System;
|
|
using Unity.BossRoom.Gameplay.GameplayObjects.Character;
|
|
using Unity.BossRoom.Infrastructure;
|
|
using UnityEngine;
|
|
|
|
namespace Unity.BossRoom.Gameplay.GameplayObjects
|
|
{
|
|
/// <summary>
|
|
/// A runtime list of <see cref="PersistentPlayer"/> objects that is populated both on clients and server.
|
|
/// </summary>
|
|
[CreateAssetMenu]
|
|
public class ClientPlayerAvatarRuntimeCollection : RuntimeCollection<ClientPlayerAvatar>
|
|
{
|
|
}
|
|
}
|