Minestom/src/main/java/net/minestom/server/data/DataContainer.java

19 lines
351 B
Java
Raw Normal View History

2020-04-24 03:25:58 +02:00
package net.minestom.server.data;
public interface DataContainer {
2020-08-03 00:37:03 +02:00
/**
* Get the data of this container
*
* @return the data of this container, can be null
*/
Data getData();
2020-08-03 00:37:03 +02:00
/**
* Set the data object of this container
*
* @param data the data of this container
*/
void setData(Data data);
}