roketto-launch/DTOs/SaveFile/AppOptionsBase.cs
Ray 1b59a4cc29 Changed to upgrade nupkg
Added prompts for drag-drop on tiles
Added drag-drop on tile layout container
Changed drag icon for tile movement and file drop
Changed to remove legacy TileContainer
2026-07-04 20:46:19 +01:00

27 lines
706 B
C#

using System.Drawing;
namespace RokettoLaunch.DTOs.SaveFile
{
public class AppOptionsBase
{
public int FileVersion { get; set; } = 0;
public int TilesPerRow { get; set; } = 6;
public bool ShowBigIcons { get; set; } = true;
public RyzStudio.Windows.FontForms.TextBox.T4KeyTextBox.Results ShowToggleHotkey { get; set; } = null;
public bool HideOnClose { get; set; } = true;
public bool HideOnExecute { get; set; } = true;
public bool AlwaysOnTop { get; set; } = false;
public Point StartPosition { get; set; } = Point.Empty;
public int Width { get; set; } = 0;
public int Height { get; set; } = 320;
}
}