For context my code(basically same as the one semm...
# lime
m
For context my code(basically same as the one semmi sent)
Copy code
hx
package;

import lime.ui.WindowAttributes;
import lime.app.Application;

class Main extends Application {
    public function new() {
        super();
        trace("Init");
    }

    public override function createWindow(attributes:WindowAttributes) {
        return null; //* Should never create window
    }
}