| Package | Description |
|---|---|
| com.aaaaahhhhhhh.bananapuncher714.dimensional.block.library.api |
Contains the DimensionalBlockLibrary API.
|
| com.aaaaahhhhhhh.bananapuncher714.dimensional.block.library.api.states |
Common DStates.
|
| Modifier and Type | Method and Description |
|---|---|
abstract DState<?>[] |
DBlock.getStates()
Return a list of all DStates that this block supports.
|
| Modifier and Type | Method and Description |
|---|---|
<T extends java.lang.Comparable<T>> |
DBlockData.get(DState<T> state)
Get the value of one of the states of this data.
|
<T extends java.lang.Comparable<T>> |
DBlockData.increment(DState<T> state)
Increment the DBlockData to the next available state.
|
<T extends java.lang.Comparable<T>> |
DBlockData.set(DState<T> state,
T value)
Set the value of one of the states of this data.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DStateBoolean
A DState implementation for booleans.
|
class |
DStateEnum<T extends java.lang.Enum<T>>
A DState implementation for enums.
|
class |
DStateInteger
A DState implementation for a range of integers.
|