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();

}

Last updated