Started the destinations

This commit is contained in:
sekwah41 2013-11-05 20:35:45 +00:00
parent 77738c16cf
commit 895a052035
1 changed files with 19 additions and 1 deletions

View File

@ -1,5 +1,23 @@
package com.sekwah.advancedportals.destinations;
public class Destinations {
import org.bukkit.Location;
import org.bukkit.entity.Player;
public class Destinations {
public void create(Player creator, Location pos1, String name){
}
public void move(Player creator, Location pos1, String name){
}
public void rename(Player creator, String oldName, String newName){
}
public void remove(Player player, String name){
}
}