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

11 lines
239 B
Java
Raw Normal View History

package com.github.dtschust.zork;
/* Special Command condition*/
2022-11-16 16:18:19 +00:00
public class ZorkCommand extends ZorkCondition {
public String command;
public boolean evaluate(Zork zork) {
return command.equals(zork.userInput);
}
}