SamsonGame/Assets/Sources/unity-ui-extensions-master/Scripts/Layout/FancyScrollView/Scroller/ScrollDirection.cs

11 lines
232 B
C#
Raw Permalink Normal View History

2021-12-29 20:50:11 +03:00
/// Credit setchi (https://github.com/setchi)
/// Sourced from - https://github.com/setchi/FancyScrollView
namespace UnityEngine.UI.Extensions
{
public enum ScrollDirection
{
Vertical,
Horizontal,
}
}