Advertisement
jadenquinn

IRoutableCart.java

Sep 28th, 2018
376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.66 KB | None | 0 0
  1. /*
  2.  * ******************************************************************************
  3.  *  Copyright 2011-2015 CovertJaguar
  4.  *
  5.  *  This work (the API) is licensed under the "MIT" License, see LICENSE.md for details.
  6.  * ***************************************************************************
  7.  */
  8.  
  9. package mods.railcraft.api.carts;
  10.  
  11. import com.mojang.authlib.GameProfile;
  12. import net.minecraft.item.ItemStack;
  13.  
  14. import javax.annotation.Nullable;
  15.  
  16. /**
  17.  * @author CovertJaguar <http://www.railcraft.info/>
  18.  */
  19. public interface IRoutableCart {
  20.  
  21.     String getDestination();
  22.  
  23.     boolean setDestination(ItemStack ticket);
  24.  
  25.     GameProfile getOwner();
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement