Interface EnvironmentLoadedListener
- All Superinterfaces:
java.util.EventListener
- All Known Subinterfaces:
EnvironmentListener
- All Known Implementing Classes:
GameTime
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface
public interface EnvironmentLoadedListener
extends java.util.EventListenerThis listener provides callbacks for when an
Environment was loaded.- See Also:
Environment.load()
Method Summary
Modifier and Type Method Description voidloaded(Environment environment)This method is called after the environment was loaded.
Method Details
loaded
This method is called after the environment was loaded.- Parameters:
environment- The environment that was loaded.
