LANCommander/LANCommander.Launcher.Settings/Enums/GroupBy.cs
Pat Hartl 81a6a3a0fc Rework views / interactions
- Added a horizontal and list view for depot/library
- Games only show covers (with fallback cover)
- Added install addon / directory select dialog
- Fixed download queue
- Added footer somewhat matching Blazor launcher
- Temporarily removed sidebar
- Implemented custom window chrome
- Added profile button
- Reworked game details to better match Blazor launcher
- Added grouping by genre, collection, or first letter
2026-03-27 18:59:17 -04:00

11 lines
177 B
C#

namespace LANCommander.Launcher.Settings.Enums
{
public enum GroupBy
{
None,
Collection,
Genre,
Platform,
FirstLetter
}
}