mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-26 02:02:28 +08:00

* Huge restructure/rewrite. No real changes to any functionality, just a cleaner and more manageable project.
20 lines
371 B
C#
20 lines
371 B
C#
using System;
|
|
|
|
namespace UnityExplorer.Core.Config
|
|
{
|
|
public interface IConfigElement
|
|
{
|
|
string Name { get; }
|
|
string Description { get; }
|
|
|
|
bool IsInternal { get; }
|
|
Type ElementType { get; }
|
|
|
|
object BoxedValue { get; set; }
|
|
|
|
object GetLoaderConfigValue();
|
|
|
|
Action OnValueChangedNotify { get; set; }
|
|
}
|
|
}
|