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 Type
    Method
    Description
    void
    Starts the operation of this instance.
    void
    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.