/**
 * This is the base class that any frontend app main class must extend.
 */
class App extends Executeable {
	/**
	 * Executed after all main() functions were called.
	 */
	static onAppDidFinishLaunching() { }

	static getResourceUri(resourcePath) {
		return this.RESOURCES_URI + resourcePath;
	}
}