All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.barrybecker4.game.twoplayer.go.board.elements.eye.GoEyeSet Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
/** Copyright by Barry G. Becker, 2000-2011. Licensed under MIT License: http://www.opensource.org/licenses/MIT  */
package com.barrybecker4.game.twoplayer.go.board.elements.eye;

import java.util.LinkedHashSet;

/**
 *  A set of GoEyes.
 *
 *  @author Barry Becker
 */
public class GoEyeSet extends LinkedHashSet {

    public GoEyeSet() {}

    /**
     * Copy constructor.
     * @param set eye set
     */
    public GoEyeSet(GoEyeSet set) {
        super(set);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy