Interface Initializable

  • 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 Initializable
    An initializable class can be registered to have a method initialize executed just before the engine starts.
    Author:
    Grégory Van den Borre
    • Method Summary

      Modifier and Type Method Description
      void initialize()
      Once registered, will be called just before the game engine starts the game loop.
    • Method Detail

      • initialize

        void initialize()
        Once registered, will be called just before the game engine starts the game loop.