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

package com.github.dtschust.zork.types;
import java.util.Set;
public interface HasSetOfCollectable {
default Set<String> getSetFromType(ZorkGameStatusType type) {
throw new UnsupportedOperationException();
}
}