mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-17 22:48:04 +08:00

* Huge restructure/rewrite. No real changes to any functionality, just a cleaner and more manageable project.
18 lines
289 B
C#
18 lines
289 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UnityExplorer.Core.Search
|
|
{
|
|
internal enum SearchContext
|
|
{
|
|
UnityObject,
|
|
GameObject,
|
|
Component,
|
|
Custom,
|
|
Singleton,
|
|
StaticClass
|
|
}
|
|
}
|