示例#1
0
        /// <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);
        }
示例#2
0
 private static extern void Internal_startUp(ref StartUpDesc desc);
示例#3
0
 public static void StartUp(StartUpDesc desc)
 {
     Internal_startUp(ref desc);
 }