mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-18 06:57:46 +08:00
18 lines
284 B
C#
18 lines
284 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace UnityExplorer.Search
|
|||
|
{
|
|||
|
internal enum SearchContext
|
|||
|
{
|
|||
|
UnityObject,
|
|||
|
GameObject,
|
|||
|
Component,
|
|||
|
Custom,
|
|||
|
Singleton,
|
|||
|
StaticClass
|
|||
|
}
|
|||
|
}
|