20 lines
400 B
C#
20 lines
400 B
C#
//============================================================
|
||
//支持中文,文件使用UTF-8编码
|
||
//@author JiphuTzu
|
||
//@create 20220910
|
||
//@company Umawerse
|
||
//
|
||
//@description:
|
||
//============================================================
|
||
|
||
namespace Umawerse.FiniteStateMachines
|
||
{
|
||
public enum StateName
|
||
{
|
||
none,
|
||
point,
|
||
line,
|
||
polygon,
|
||
circle
|
||
}
|
||
} |