コード例 #1
0
ファイル: Program.cs プロジェクト: neofuji/Altseed
        static void Main(string[] args)
        {
            ISample[] samples =
            {
                new Window.Empty(),
                new Window.EmptyExternal(),

                new Log(),

                new Input.Keyboard(),
                new Input.Mouse(),
                new Input.Joystick(),

                new Sound.Sound(),

                new ObjectSystem.Object2DComponent(),
                new ObjectSystem.Transition(),

                new Graphics._2D.CameraObject2D(),
                new Graphics._2D.EffectObject2D(),

                new Graphics._2D.TextObject2D_Simple(),
                new Graphics._2D.TextObject2D_Rotate(),
                new Graphics._2D.TextObject2D_Filtered(),

                new Graphics._2D.TextureObject2D_Simple(),
                new Graphics._2D.TextureObject2D_Transform(),
                new Graphics._2D.TextureObject2D_Turn(),
                new Graphics._2D.TextureObject2D_Src(),

                new Graphics._2D.MapObject2D_Simple(),
                new Graphics._2D.MapObject2D_Camera(),

                new Graphics._2D.ImagePackage(),

                new Graphics.PostEffect.PostEffect(),
                new Graphics.PostEffect.CustomPostEffect(),
            };

            var cui = new SampleGuide(samples);

            cui.Show();
        }
コード例 #2
0
        static void Main(string[] args)
        {
            ISample[] samples =
            {
                new ImagePackageUI_Basic(),
                new ImagePackageUI_AlphaBlend(),
                new ImagePackageUI_Component(),

                new Pause_Basic(),

                new CustomPostEffect_Invert(),
                new CustomPostEffect_Mosaic(),

                new MapObject2D_Basic(),
                new MapObject2D_Camera(),
            };

            var cui = new SampleGuide(samples);

            cui.Show();
        }