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/types/HasSetOfCollectable.java

11 lines
229 B
Java
Raw Normal View History

package com.github.dtschust.zork.types;
import java.util.Set;
public interface HasSetOfCollectable {
2022-11-22 12:43:15 +00:00
default Set<String> getSetFromType(ZorkGameStatusType type) {
throw new UnsupportedOperationException();
}
}