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

Tree @master (Download .tar.gz)

ZDictionary.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 abstract class ZDictionary {
	public abstract void tokenise(int textloc, int textlength, int parseloc);

	public abstract boolean parse_word(int textloc, int wordloc,
			int wordlength, int parseloc);

}