OSRS Plugin API
    Preparing search index...

    Enumeration ON_SCREEN_RESIZE

    Event id for when the screen is resized. Calls the OnScreenResizeCallback.

    -- Create a function
    local screenResize = function()
    osrs.print("Screen Resized")
    end
    -- Subscribe to the function
    osrs.Events.subscribe(screenResize, osrs.Events.ON_SCREEN_RESIZE)