mirror of
https://github.com/par274/sharpemu.git
synced 2026-08-03 16:39:51 +08:00
77f22973cb
* [GUI] Add horizontal game tiles * [GUI] Update launching elements layout * [GUI] Change cards format to squares
17 lines
368 B
C#
17 lines
368 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
namespace SharpEmu.GUI;
|
|
|
|
/// <summary>
|
|
/// Stateless trailing action that opens the library folder picker.
|
|
/// </summary>
|
|
public sealed class AddFolderTile : LibraryTile
|
|
{
|
|
public static AddFolderTile Instance { get; } = new();
|
|
|
|
private AddFolderTile()
|
|
{
|
|
}
|
|
}
|