mirror of
https://github.com/2OOP/pism.git
synced 2026-02-04 10:54:51 +00:00
Renamed Interface Playtable to IPlayable
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
package org.toop.game;
|
||||
|
||||
import org.toop.game.interfaces.Playable;
|
||||
import org.toop.game.interfaces.IPlayable;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
public abstract class Game implements Playable {
|
||||
public abstract class Game implements IPlayable {
|
||||
|
||||
public static final char EMPTY = (char)0;
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ package org.toop.game.interfaces;
|
||||
import org.toop.game.enumerators.GameState;
|
||||
import org.toop.game.records.Move;
|
||||
|
||||
public interface Playable {
|
||||
public interface IPlayable {
|
||||
Move[] getLegalMoves();
|
||||
GameState play(Move move);
|
||||
}
|
||||
Reference in New Issue
Block a user