change project structure
This commit is contained in:
15
app/src/main/java/chess/controller/commands/UndoCommand.java
Normal file
15
app/src/main/java/chess/controller/commands/UndoCommand.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package chess.controller.commands;
|
||||
|
||||
import chess.controller.Command;
|
||||
import chess.controller.OutputSystem;
|
||||
import chess.model.Game;
|
||||
|
||||
public class UndoCommand extends Command{
|
||||
|
||||
@Override
|
||||
public CommandResult execute(Game game, OutputSystem outputSystem) {
|
||||
//TODO
|
||||
return CommandResult.Moved;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user