Files
OnlyNPC/Assets/FPS/Scripts/Game/Managers/ActorsManager.cs
manhduyhoang90 167a617e09 asdasd
2026-05-26 09:46:57 +07: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>();
}
}
}