for example,the code of the GameplayAbilitySystem has many code like
FGameplayEffectSpec* NewSpec = new FGameplayEffectSpec(GameplayEffect, Context, Level);
it use the “new” to create a pointer of USTRUCT,but i dont find “delete” to delete it, it does can auto delete by the unreal runtime?