Files
BITFALL/Assets/Artists/Scripts/GameMode/UnityInfoNpcStart.cs
CortexCore 50da35f497 1
2024-04-13 01:10:30 +08:00

15 lines
322 B
C#

using System.Collections;
using System.Collections.Generic;
using BITKit;
using UnityEngine;
namespace BITFALL.GameMode
{
public class UnityInfoNpcStart : UnityInfoEntityStart<InfoNpcStart>,InfoNpcStart
{
[SerializeReference, SubclassSelector] private IReference npcName;
public string Name=> npcName.Value;
}
}