Skip to content

Package: IHTMove

IHTMove

Coverage

1: package de.fhdw.gaming.ipspiel23.ht.moves;
2:
3: import de.fhdw.gaming.core.domain.Move;
4: import de.fhdw.gaming.ipspiel23.ht.domain.IHTPlayer;
5: import de.fhdw.gaming.ipspiel23.ht.domain.IHTState;
6:
7: /**
8: * Represents a move of the HT game.
9: */
10: public interface IHTMove extends Move<IHTPlayer, IHTState> {
11: }