Examples of SGFFloatProperty


Examples of com.sgfj.SGFFloatProperty

    }

    public void init(int size, float komi, String ruleSet, String white, String black) {
        init(size);
        SGFNode head = kifuHead();
        head.addProperty(new SGFFloatProperty(SGFPropertyName.KM, komi));
        head.addProperty(new SGFTextProperty(SGFPropertyName.RU, ruleSet.toCharArray()));
        head.addProperty(new SGFTextProperty(SGFPropertyName.PW, white.toCharArray()));
        head.addProperty(new SGFTextProperty(SGFPropertyName.PB, black.toCharArray()));
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.