Files
Deroc_Virtual_3D/Assets/FPS/Scripts/Game/Managers/ActorsManager.cs
T
Alex38Lyon 878ea46cac update
2025-06-03 12:00:47 +02:00

19 lines
408 B
C#

using System.Collections.Generic;
using UnityEngine;
namespace Unity.FPS.Game
{
public class ActorsManager : MonoBehaviour
{
public List<Actor> Actors { get; private set; }
public GameObject Player { get; private set; }
public void SetPlayer(GameObject player) => Player = player;
void Awake()
{
Actors = new List<Actor>();
}
}
}