mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-11 20:25:11 +00:00
13 lines
251 B
C#
13 lines
251 B
C#
|
/// Credit setchi (https://github.com/setchi)
|
|||
|
/// Sourced from - https://github.com/setchi/FancyScrollView
|
|||
|
|
|||
|
namespace UnityEngine.UI.Extensions
|
|||
|
{
|
|||
|
public enum MovementDirection
|
|||
|
{
|
|||
|
Left,
|
|||
|
Right,
|
|||
|
Up,
|
|||
|
Down,
|
|||
|
}
|
|||
|
}
|