JisolGame/JEX_GAS/Assets/GAS/Runtime/Component/AbilitySystemPreviewComponent.cs

21 lines
403 B
C#
Raw Normal View History

2024-10-18 17:48:59 +08:00
using UnityEngine;
namespace GAS.Runtime
{
public class AbilitySystemPreviewComponent : AbilitySystemComponent
{
private GameObject view;
public AbilitySystemPreviewComponent(GameObject view)
{
this.view = view;
}
public override GameObject GetView()
{
return view;
}
}
}