using System; using GAS.Runtime; using UnityEngine; namespace CoreGame.Render { [CreateAssetMenu(fileName = "GA_Death", menuName = "GameAsset/Ability/GADeathAsset")] public class GADeathAsset : TimelineAbilityAssetBase { public override Type AbilityType() { return typeof(GADeath); } } }