EnumNodeType.cs

31 lines | 527 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yEd.XGML.Enums
{
    public enum EnumNodeType
    {
        rectangle,
        rectangle3d,
        roundrectangle,
        diamond,
        ellipse,
        fatarrow,
        fatarrow2,
        hexagon,
        octagon,
        parallelogram,
        parallelogram2,
        star5,
        star6,
        star8,
        trapezoid,
        trapezoid2,
        triangle,
        triangle2,
    }
}