mirror of
https://gitee.com/jisol/jisol-game/
synced 2025-06-26 19:34:47 +00:00
21 lines
403 B
C#
21 lines
403 B
C#
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;
|
|
}
|
|
|
|
}
|
|
} |