This repository has been archived on 2022-12-21. You can view files and clone it, but cannot push or open issues or pull requests.
sdm03/src/main/java/com/github/dtschust/zork/ZorkCommand.java

15 lines
323 B
Java

package com.github.dtschust.zork;
/* Special Command condition */
public class ZorkCommand {
private final String commandName;
public ZorkCommand(String command) {
this.commandName = command;
}
public boolean matchesInput(String userInput) {
return commandName.equals(userInput);
}
}