Package com.rvandoosselaer.blocks
Interface PagerListener<T>
-
public interface PagerListener<T>
A listener that can be registered to thePager
. Use this to get notified when pages are attached, detached or updated.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPageAttached(com.simsilica.mathd.Vec3i location, T page)
void
onPageDetached(com.simsilica.mathd.Vec3i location, T page)
void
onPageUpdated(com.simsilica.mathd.Vec3i location, T oldPage, T newPage)
-