Files
AetherBags/AetherBags/Nodes/FlexGrowDirection.cs
T
2025-12-20 09:27:52 -05:00

14 lines
187 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace AetherBags.Nodes;
public enum FlexGrowDirection
{
DownRight,
DownLeft,
UpRight,
UpLeft
}