mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-19 23:37:39 +08:00

* Using publicized mono assemblies * Remaking UI from scratch. Done the Scene Explorer so far.
14 lines
203 B
C#
14 lines
203 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace UnityExplorer.Core.Runtime
|
|
{
|
|
public enum RuntimeContext
|
|
{
|
|
Mono,
|
|
IL2CPP
|
|
}
|
|
}
|