mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-24 14:16:44 +01:00
10 lines
261 B
Java
10 lines
261 B
Java
|
package com.intellectualcrafters.plot.generator;
|
||
|
|
||
|
import com.intellectualcrafters.plot.object.PlotManager;
|
||
|
|
||
|
/**
|
||
|
* A plot manager where plots tessellate in a grid formation symmetrical about x=z
|
||
|
*/
|
||
|
public abstract class GridPlotManager extends PlotManager {
|
||
|
}
|