// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace UltimateXR.Avatar { /// /// Base class for avatar events. /// public class UxrAvatarEventArgs { #region Public Types & Data /// /// Gets the Avatar the event belongs to. /// public UxrAvatar Avatar { get; } #endregion #region Constructors & Finalizer /// /// Constructor. /// /// Avatar public UxrAvatarEventArgs(UxrAvatar avatar) { Avatar = avatar; } #endregion } }