diff --git a/Advanced Portals/src/com/sekwah/advancedportals/destinations/Destinations.java b/Advanced Portals/src/com/sekwah/advancedportals/destinations/Destinations.java index 2670a38..5fe00c2 100644 --- a/Advanced Portals/src/com/sekwah/advancedportals/destinations/Destinations.java +++ b/Advanced Portals/src/com/sekwah/advancedportals/destinations/Destinations.java @@ -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){ + + } }