mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
12 lines
No EOL
176 B
C#
12 lines
No EOL
176 B
C#
using System;
|
|
|
|
namespace DataBoxControl;
|
|
|
|
[Flags]
|
|
public enum DataBoxGridLinesVisibility
|
|
{
|
|
None = 0,
|
|
Horizontal = 1,
|
|
Vertical = 2,
|
|
All = Vertical | Horizontal
|
|
} |