Files
QuartZ-dump/GlobalShared/Config/IPluginConfig.cs
2024-12-29 21:15:58 +01:00

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