コード例 #1
0
ファイル: LogicTree.cs プロジェクト: nmbswls/CSCI529
    public LogicNode ConstructFromString(string str)
    {
        LogicNode ret = null;

        try{
            ret = LogicNode.ConstructFromString(str, FuncDict);
        }catch (Exception e) {
            Debug.Log(e);
        }
        return(ret);
    }