All Downloads are FREE. Search and download functionalities are using the official Maven repository.

squidpony.squidgrid.iterator.SquidIterator Maven / Gradle / Ivy

Go to download

SquidLib platform-independent logic and utility code. Please refer to https://github.com/SquidPony/SquidLib .

There is a newer version: 3.0.6
Show newest version
package squidpony.squidgrid.iterator;

import squidpony.squidmath.Coord;

import java.util.Iterator;

/**
 * Iterators that return instances of {@link Coord} and that are useful in
 * roguelikes.
 * 
 * 

* For the moment this is only a marker interface, but it may be extended in the * future. *

* * @author smelC * * @see SquidIterators */ public interface SquidIterator extends Iterator { /* This is a marker interface */ }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy