12 lines
143 B
C#
12 lines
143 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace CaeMesh.Meshing
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public enum GmshCommandEnum
|
|||
|
|
{
|
|||
|
|
Mesh,
|
|||
|
|
Defeature
|
|||
|
|
}
|
|||
|
|
}
|