mirror of
https://github.com/GrahamKracker/UnityExplorer.git
synced 2025-07-14 07:37:06 +08:00
23 lines
441 B
C#
23 lines
441 B
C#
using System;
|
|
|
|
namespace UnityExplorer.Config
|
|
{
|
|
public interface IConfigElement
|
|
{
|
|
string Name { get; }
|
|
string Description { get; }
|
|
|
|
bool IsInternal { get; }
|
|
Type ElementType { get; }
|
|
|
|
object BoxedValue { get; set; }
|
|
object DefaultValue { get; }
|
|
|
|
object GetLoaderConfigValue();
|
|
|
|
void RevertToDefaultValue();
|
|
|
|
Action OnValueChangedNotify { get; set; }
|
|
}
|
|
}
|