15 lines
301 B
C#
15 lines
301 B
C#
/*
|
|
* FancyScrollView (https://github.com/setchi/FancyScrollView)
|
|
* Copyright (c) 2020 setchi
|
|
* Licensed under MIT (https://github.com/setchi/FancyScrollView/blob/master/LICENSE)
|
|
*/
|
|
|
|
namespace FancyScrollView
|
|
{
|
|
public enum ScrollDirection
|
|
{
|
|
Vertical,
|
|
Horizontal,
|
|
}
|
|
}
|