mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
20 lines
364 B
C#
20 lines
364 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace DrumKit
|
|||
|
{
|
|||
|
[Flags]
|
|||
|
public enum DrumkitLayoutTargetView
|
|||
|
{
|
|||
|
None = 0,
|
|||
|
Snapped = 1,
|
|||
|
Filled = 2,
|
|||
|
Landscape = 4,
|
|||
|
Portrait = 8,
|
|||
|
All = Snapped | Filled | Landscape | Portrait
|
|||
|
}
|
|||
|
}
|