001package fr.aumgn.dac2.shape; 002 003import fr.aumgn.bukkitutils.geom.Vector; 004 005/** 006 * Represents a region shape. 007 */ 008public interface Shape { 009 010 boolean contains(Vector pt); 011}