Sic.Framework-Nanjing-Baishi/MECF.Framework.Common/Aitex/Sorter/Common/SorterRecipePlaceModePack.cs

17 lines
340 B
C#
Raw Normal View History

2023-04-13 11:51:03 +08:00
using System.ComponentModel;
namespace Aitex.Sorter.Common
{
public enum SorterRecipePlaceModePack
{
[Description("From Bottom Insert")]
FromBottomInsert = 0,
[Description("From Bottom Shift")]
FromBottomShift = 1,
[Description("From Top Insert")]
FromTopInsert = 2,
[Description("From Top Shift")]
FromTopShift = 3
}
}