/// <summary>Initializes the struct with default values.</summary> public static StartUpDesc Default() { StartUpDesc value = new StartUpDesc(); value.renderAPI = ""; value.renderer = ""; value.physics = ""; value.audio = ""; value.input = ""; value.physicsCooking = true; value.primaryWindowDesc = new RenderWindowDesc(); value.importers = null; return(value); }
private static extern void Internal_startUp(ref StartUpDesc desc);
public static void StartUp(StartUpDesc desc) { Internal_startUp(ref desc); }