You've already forked taptap2024_GJ_chidouren
21 lines
317 B
C#
21 lines
317 B
C#
|
|
|
|
namespace XFFSM
|
|
{
|
|
public class FSMConst
|
|
{
|
|
|
|
public const string anyState = "Any State";
|
|
|
|
public const string entryState = "Entry";
|
|
|
|
public const string up = "up"; // 上一层
|
|
|
|
public const int StateNodeWith = 200;
|
|
public const int StateNodeHeight = 40;
|
|
|
|
}
|
|
|
|
}
|
|
|