com.artemis.link.LinkAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of artemis-odb Show documentation
Show all versions of artemis-odb Show documentation
Fork of Artemis Entity System Framework.
package com.artemis.link;
/**
* Stub implementation of {@link LinkListener}.
*
* @see EntityLinkManager#register(Class, LinkListener)
* @see EntityLinkManager#register(Class, String, LinkListener)
*/
public class LinkAdapter implements LinkListener {
@Override
public void onLinkEstablished(int sourceId, int targetId) {}
@Override
public void onLinkKilled(int sourceId, int targetId) {}
@Override
public void onTargetDead(int sourceId, int deadTargetId) {}
@Override
public void onTargetChanged(int sourceId, int targetId, int oldTargetId) {}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy