2025-10-03 20:00:05 +05:00

14 lines
334 B
C#

namespace PixelCrushers
{
/// <summary>
/// Allows classes to have a reference to an EventSystem.
/// Useful for local multiplayer games that have more than one EventSystem.
/// </summary>
public interface IEventSystemUser
{
UnityEngine.EventSystems.EventSystem eventSystem { get; set; }
}
}