Neon Addons API
  • Introduction
    • Informations
    • Ways of writing Addons
      • Java "Scripting"
      • Normal Java "Project"
  • Examples
    • Simple Chams
    • Simple ESP
    • Simple Ground Spoof Flight
    • Text Rendering
    • Sending/Intercepting Packets
    • Settings
  • The API
    • Addon API
      • AbstractNeonAddon
      • Objects
        • Events
          • NeonEvent
          • NeonPacketEvent
          • NeonPlayerMotionEvent
          • NeonPlayerMoveEvent
          • NeonPostProcessEvent
          • NeonRenderEvent
          • NeonRenderPlayerEvent
          • NeonRotationEvent
          • NeonGameTickEvent
        • Interfaces
          • INeon
          • INeonModuleManager
          • INeonModule
          • INeonSettingManager
          • INeonRenderer
          • INeonRectanglePublisher
          • INeonRoundRectanglePublisher
          • INeonMathUtil
          • INeonMovementUtil
          • INeonRotationUtil
          • INeonUnsafeFunctions
        • Other Types
          • NeonFontType
          • NeonNotificationType
          • NeonPair
          • NeonMusicMetadata
          • NeonMusicType
Powered by GitBook
On this page
  1. The API
  2. Addon API
  3. Objects
  4. Interfaces

INeon

public interface INeon {

    void logChat(final String text);

    void emitNotification(final StitchNotificationType type, final String title,
                          final String message, final float timeSeconds);

    String getClientName();

    INeonModuleManager getModuleManager();

    INeonRenderer getRenderer();

    INeonMovementUtil getMovementUtil();

    INeonMathUtil getMathUtil();

    INeonSettingManager getSettingManager();

    String getUsername();
    
    // nullable
    EntityLivingBase getKillAuraTarget();

    boolean isBot(Entity entity);

    // nullable
    NeonMusicMetadata getPlayingMusicData();
    
    INeonUnsafeFunctions getUnsafeFunctions();

}
PreviousInterfacesNextINeonModuleManager

Last updated 6 months ago