2020-04-15 14:22:03 +02:00
|
|
|
package com.minelittlepony.unicopia.entity;
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2019-03-12 21:10:48 +01:00
|
|
|
/**
|
|
|
|
* Interface for things that can be owned.
|
|
|
|
*
|
|
|
|
* @param <E> The type of object that owns us.
|
|
|
|
*/
|
2020-01-27 17:37:22 +01:00
|
|
|
public interface Owned<E> {
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2019-03-12 21:10:48 +01:00
|
|
|
/**
|
|
|
|
* Updates the owner of this object.
|
|
|
|
*/
|
2019-02-09 15:34:17 +01:00
|
|
|
void setOwner(E owner);
|
2018-09-16 00:45:44 +02:00
|
|
|
|
2019-03-12 21:10:48 +01:00
|
|
|
/**
|
|
|
|
* Gets the owner that holds this object.
|
|
|
|
*/
|
2018-09-16 00:45:44 +02:00
|
|
|
E getOwner();
|
|
|
|
}
|