From 895a052035db41259afbad6bf7bb39853a84e29c Mon Sep 17 00:00:00 2001 From: sekwah41 Date: Tue, 5 Nov 2013 20:35:45 +0000 Subject: [PATCH] Started the destinations --- .../destinations/Destinations.java | 20 ++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) 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){ + + } }