14 lines
187 B
C#
14 lines
187 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AetherBags.Nodes;
|
|
|
|
public enum FlexGrowDirection
|
|
{
|
|
DownRight,
|
|
DownLeft,
|
|
UpRight,
|
|
UpLeft
|
|
}
|