// // /*===============================================================================
// // Copyright (C) 2024 PhantomsXR Ltd. All Rights Reserved.
// //
// // This file is part of the Phantom.XRMOD.VisionOSModule.Runtime.
// //
// // The XR-MOD cannot be copied, distributed, or made available to
// // third-parties for commercial purposes without written permission of PhantomsXR Ltd.
// //
// // Contact nswell@phantomsxr.com for licensing requests.
// // ===============================================================================*/
using System.Collections.Generic;
using UnityEngine;
namespace Phantom.XRMOD.ActionNotification.Runtime
{
public class OnEventPlaneEventArgs : OnEventBaseArgs
{
///
/// The list of s added since the last event.
///
public List Added { get; set; }
///
/// The list of s udpated since the last event.
///
public List Updated { get; set; }
///
/// The list of s removed since the last event.
/// At the time the event is invoked, the s in
/// this list still exist. They are destroyed immediately afterward.
///
public List Removed { get; set; }
}
}