Skip to content

Method: createCinemaMove()

1: package de.fhdw.gaming.ipspiel24.fg.moves.impl;
2:
3: import de.fhdw.gaming.ipspiel24.fg.moves.FGMove;
4: import de.fhdw.gaming.ipspiel24.fg.moves.factory.FGMoveFactory;
5:
6: /**
7: * Implements {@link DemoMoveFactory}.
8: */
9: public final class FGDefaultMoveFactory implements FGMoveFactory {
10:
11: @Override
12: public FGMove createCinemaMove() {
13: return new FGCinemaMove();
14: }
15:
16: @Override
17: public FGMove createFootballMove() {
18: return new FGFootballMove();
19: }
20: }