Select Git revision
Forked from
YAGOUBI Rim / Game of life Template
Source project has a limited visibility.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
State.java 185 B
package model;
import javafx.scene.paint.Color;
import java.util.List;
public interface State<S> {
Color getColor();
S next();
S update(List<State<S>> neighbours);
}