Skip to content

Instantly share code, notes, and snippets.

using UnityEngine;
using UnityEngine.EventSystems;
public class SampleEventData : BaseEventData
{
public string SampleStr { get; private set; }
public SampleEventData(EventSystem eventSystem, string sampleStr) : base(eventSystem)
{
SampleStr = sampleStr;
}