mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-11 20:25:11 +00:00
11 lines
232 B
C#
11 lines
232 B
C#
|
/// Credit setchi (https://github.com/setchi)
|
|||
|
/// Sourced from - https://github.com/setchi/FancyScrollView
|
|||
|
|
|||
|
namespace UnityEngine.UI.Extensions
|
|||
|
{
|
|||
|
public enum ScrollDirection
|
|||
|
{
|
|||
|
Vertical,
|
|||
|
Horizontal,
|
|||
|
}
|
|||
|
}
|