Advertisement
jadenquinn

IPaintedCart.java

Sep 28th, 2018
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.56 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 net.minecraft.item.EnumDyeColor;
  12.  
  13. /**
  14.  *
  15.  * @author CovertJaguar <http://www.railcraft.info/>
  16.  */
  17. public interface IPaintedCart {
  18.  
  19.     EnumDyeColor getPrimaryColor();
  20.  
  21.     EnumDyeColor getSecondaryColor();
  22.    
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement