예제 #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 };
    }