12 lines
182 B
C#
12 lines
182 B
C#
|
namespace DualScreenDemo
|
||
|
{
|
||
|
|
||
|
public enum ClickSequenceState
|
||
|
{
|
||
|
Initial,
|
||
|
FirstClicked,
|
||
|
SecondClicked,
|
||
|
ThirdClicked,
|
||
|
Completed
|
||
|
}
|
||
|
}
|