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/ZorkItem.java

14 lines
308 B
Java
Raw Normal View History

2022-11-19 09:46:28 +00:00
package com.github.dtschust.zork.types;
import java.util.ArrayList;
/* Item*/
2022-11-16 16:18:19 +00:00
public class ZorkItem extends ZorkObject {
public String writing;
public ArrayList<String> turnOnPrint = new ArrayList<>();
public ArrayList<String> turnOnAction = new ArrayList<>();
public ZorkItem() {
}
}