Interface ILaunchable

All Known Subinterfaces:
IGameLoop, ILoop
All Known Implementing Classes:
Animation, CommandManager, GameLoop, GamepadManager, SoundEngine, TweenEngine, UpdateLoop

public interface ILaunchable
A functional interface that defines methods for instances that need to be launched and terminated externally.
  • Method Summary

    Modifier and TypeMethodDescription
    voidstart()
    Starts the operation of this instance.
    voidterminate()
    Terminates the operation of this instance.
  • Method Details

    • start

      void start()
      Starts the operation of this instance.
    • terminate

      void terminate()
      Terminates the operation of this instance.