This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
JRummikub/src/jrummikub/control/TurnControl.java

35 lines
605 B
Java
Raw Normal View History

package jrummikub.control;
import jrummikub.model.Hand;
import jrummikub.model.ITable;
import jrummikub.util.Event;
import jrummikub.util.IEvent;
import jrummikub.view.IView;
public class TurnControl {
private Hand hand;
private ITable table;
private TurnTimer timer;
private IView view;
private Event endOfTurnEvent = new Event();
public TurnControl(Hand hand, ITable table, IView view) {
this.hand = hand;
this.table = table;
this.view = view;
}
private void sortByValue() {
}
private void sortByColor() {
}
public IEvent getEndOfTurnEvent() {
return endOfTurnEvent;
}
}