14 lines
204 B
C#
14 lines
204 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace SuperTreeView
|
|
{
|
|
public enum CustomEvent
|
|
{
|
|
ItemClicked,
|
|
ItemDoubleClicked,
|
|
}
|
|
|
|
}
|