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
Raw Normal View History

package com.github.dtschust.zork;
2022-11-16 16:42:56 +00:00
/* Special Command condition */
2022-11-21 21:29:36 +00:00
public class ZorkCommand {
2022-11-22 10:32:57 +00:00
private final String commandName;
2022-11-16 16:35:32 +00:00
public ZorkCommand(String command) {
2022-11-21 21:29:36 +00:00
this.commandName = command;
2022-11-16 16:35:32 +00:00
}
2022-11-21 21:29:36 +00:00
public boolean matchesInput(String userInput) {
return commandName.equals(userInput);
}
}