Elements. Build native projects for any modern development platform, using the language(s) of your choice. Oxygene (Object Pascal), C#, Swift, Java, Go. | RemObjects Software

SharedUI.Shared

Language: Iodine, Platform: All, Category: SharedUI
https://github.com/remobjects/ElementsSamples/tree/master/Iodine/All/SharedUI/SharedUI.Shared

$(MSBuildThisFileDirectory)AppDelegate.java

package SharedUI.Shared;

public __partial class AppDelegate
{
	public MainWindowController mainWindowController { __get; private __set;  }

	public void start()
	{
		//
		//  this is the cross-platform entry point for the app
		//

		mainWindowController = new MainWindowController();
		mainWindowController.showWindow(null);

		//
		// Add Shared code here
		//
	}
}