Files
UnityExplorer/src/Core/Config/IConfigElement.cs
Sinai 0555a644b7 3.3.0 rewrite
* Huge restructure/rewrite. No real changes to any functionality, just a cleaner and more manageable project.
2021-03-30 19:50:04 +11:00

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; }
}
}