14 lines
340 B
C#
14 lines
340 B
C#
using System.ComponentModel;
|
|
using VRageMath;
|
|
|
|
namespace Global.Shared.Config
|
|
{
|
|
public interface IPluginConfig : INotifyPropertyChanged
|
|
{
|
|
bool IsEnabled { get; set; }
|
|
int Size { get; set; }
|
|
Vector3I CenterPosition { get; set; }
|
|
int Capacity { get; set; }
|
|
int MaxDepth { get; set; }
|
|
}
|
|
} |