Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion jme3-core/src/main/java/com/jme3/app/Application.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2009-2012 jMonkeyEngine
* Copyright (c) 2009-2020 jMonkeyEngine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -167,11 +167,13 @@ public interface Application {

/**
* Starts the application.
* A bug occuring when using LWJGL3 prevents this method from returning until after the application is stopped.
*/
public void start();

/**
* Starts the application.
* A bug occuring when using LWJGL3 prevents this method from returning until after the application is stopped.
*/
public void start(boolean waitFor);

Expand Down