Select Git revision
ElementManager.class.uniqueId8
Forked from
COUETOUX Basile / FirefighterStarter
Source project has a limited visibility.
-
BACHTARZI Imed eddine authored
used the Factory Method through ElementFactory
BACHTARZI Imed eddine authoredused the Factory Method through ElementFactory
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
GreedyStrategy.java 263 B
package model ;
import java.util.List;
import javafx.scene.paint.Color;
public class GreedyStrategy implements Strategies {
@Override
public void jouer(List<Color> colors) {
throw new UnsupportedOperationException("Not supported yet.");
}
}