示例#1
0
文件: IsOverLoot.cs 项目: foxor/LD41
    public IsOverLoot()
    {
        input  = new ControlFlow(this);
        output = new BoolEdge(this);

        Inputs  = new Edge[] { input };
        Outputs = new Edge[] { output };
    }
示例#2
0
文件: EnemyNear.cs 项目: foxor/LD41
    public EnemyNear()
    {
        input  = new DirEdge(this);
        output = new BoolEdge(this);

        Inputs  = new Edge[] { input };
        Outputs = new Edge[] { output };
    }
示例#3
0
    public ConstBool()
    {
        input  = new ControlFlow(this);
        output = new BoolEdge(this);

        Inputs  = new Edge[] { input };
        Outputs = new Edge[] { output };
    }
示例#4
0
文件: Branch.cs 项目: foxor/LD41
    public Branch()
    {
        input  = new BoolEdge(this);
        top    = new ControlFlow(this);
        bottom = new ControlFlow(this);

        Inputs  = new Edge[] { input };
        Outputs = new Edge[] { top, bottom };
    }