git @ Cat's Eye Technologies Zplet / master src / main / java / org / zplet / zmachine / ZFrameBound.java
master

Tree @master (Download .tar.gz)

ZFrameBound.java @masterraw · history · blame

/* Zplet, a Z-Machine interpreter in Java */
/* Copyright 1996,2001 Matthew T. Russotto */
/* As of 23 February 2001, this code is open source and covered by the */
/* Artistic License, found within this package */

package org.zplet.zmachine;

public class ZFrameBound {
	private boolean store;

	public ZFrameBound(boolean store) {
		this.store = store;
	}

	public boolean isstore() {
		return store;
	}
}