feat: move PushDirection enum to OpenNest.Core

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-06 18:23:02 -05:00
parent cc934f96aa
commit 26d020ce3d
3 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
namespace OpenNest
{
public enum PushDirection
{
Up,
Down,
Left,
Right
}
}