Moved JavaDocs from ICosmeticShape (now removed) to CosmeticShape

This commit is contained in:
xGamingDudex 2016-05-15 17:04:25 +02:00
parent 97f82e422d
commit a8db293bcf
2 changed files with 7 additions and 1 deletions

View File

@ -2,9 +2,15 @@ package mineplex.core.common.shape;
import org.bukkit.Location;
/**
* Interface used by classes which can display visuals at provided locations.
*/
public interface CosmeticShape
{
/**
* Display a visual at the given location
* @param loc The location to display the visual at
*/
void display(Location loc);
}