@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents an acacia boat.
|
||||
*/
|
||||
public interface AcaciaBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents an acacia chest boat.
|
||||
*/
|
||||
public interface AcaciaChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents a bamboo chest raft.
|
||||
*/
|
||||
public interface BambooChestRaft extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents a bamboo raft.
|
||||
*/
|
||||
public interface BambooRaft extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents a birch boat.
|
||||
*/
|
||||
public interface BirchBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents a birch chest boat.
|
||||
*/
|
||||
public interface BirchChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents a cherry boat.
|
||||
*/
|
||||
public interface CherryBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents a cherry chest boat.
|
||||
*/
|
||||
public interface CherryChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents a dark oak boat.
|
||||
*/
|
||||
public interface DarkOakBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents a dark oak chest boat.
|
||||
*/
|
||||
public interface DarkOakChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents a jungle boat.
|
||||
*/
|
||||
public interface JungleBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents a jungle chest boat.
|
||||
*/
|
||||
public interface JungleChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents a mangrove boat.
|
||||
*/
|
||||
public interface MangroveBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents a mangrove chest boat.
|
||||
*/
|
||||
public interface MangroveChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents an oak boat.
|
||||
*/
|
||||
public interface OakBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents an oak chest boat.
|
||||
*/
|
||||
public interface OakChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents an pale oak boat.
|
||||
*/
|
||||
public interface PaleOakBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents an pale oak chest boat.
|
||||
*/
|
||||
public interface PaleOakChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.Boat;
|
||||
|
||||
/**
|
||||
* Represents a spruce boat.
|
||||
*/
|
||||
public interface SpruceBoat extends Boat {
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package org.bukkit.entity.boat;
|
||||
|
||||
import org.bukkit.entity.ChestBoat;
|
||||
|
||||
/**
|
||||
* Represents a spruce chest boat.
|
||||
*/
|
||||
public interface SpruceChestBoat extends ChestBoat {
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
/**
|
||||
* Interfaces for various {@link org.bukkit.entity.Boat} types.
|
||||
*/
|
||||
package org.bukkit.entity.boat;
|
||||
Reference in New Issue
Block a user