public static void StartDemo()
        {
            EmulatorDemo app = new EmulatorDemo(Pictor.UI.PlatformSupportAbstract.PixelFormats.Rgba32, Pictor.UI.PlatformSupportAbstract.ERenderOrigin.OriginBottomLeft);
            app.Caption = "MOSA :: Emulator :: Pictor Demonstration";

            if (app.Init(600, 400, (uint)Pictor.UI.PlatformSupportAbstract.EWindowFlags.Risizeable)) {
                app.Run();
            }
        }
Beispiel #2
0
        public static void StartDemo()
        {
            EmulatorDemo app = new EmulatorDemo(Pictor.UI.PlatformSupportAbstract.PixelFormats.Rgba32, Pictor.UI.PlatformSupportAbstract.ERenderOrigin.OriginBottomLeft);

            app.Caption = "MOSA :: Emulator :: Pictor Demonstration";

            if (app.Init(600, 400, (uint)Pictor.UI.PlatformSupportAbstract.EWindowFlags.Risizeable))
            {
                app.Run();
            }
        }