using System; namespace UnityEngine.Events { public struct OrientationEvent { public Component target { get; set; } public Action action { get; set; } public OrientationEvent(Component target, Action action) { this.target = target; this.action = action; } } }