Files
BABA_YAGA/Assets/Scripts/Player/vEffect/Scripts/vIEffect.cs
2026-06-04 10:42:23 +07:00

12 lines
242 B
C#

using UnityEngine;
namespace Invector
{
public partial interface vIEffect
{
string EffectName { get; }
float EffectDuration { get; }
Vector3 EffectPosition { get; }
Transform Sender { get; }
}
}