mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 12:06:34 +00:00
15 lines
357 B
C#
15 lines
357 B
C#
using Daybreak.Shared.Attributes;
|
|
|
|
namespace Daybreak.Configuration.Options;
|
|
|
|
[OptionsName(Name = "Screen Manager")]
|
|
[OptionsIgnore]
|
|
[OptionsSynchronizationIgnore]
|
|
public sealed class ScreenManagerOptions
|
|
{
|
|
public double X { get; set; }
|
|
public double Y { get; set; }
|
|
public double Width { get; set; }
|
|
public double Height { get; set; }
|
|
}
|