コード例 #1
0
        public Television(Compound gui, Point location, Mapper cart, SignalType s)
            : base(gui, new Rectangle(location, new Size(320, 264)), null)
        {
            atari = new Atari(cart);
            atari.SetSignal(s);

            j = new cstari.input.Joystick();

            atari.plug(j, null);

            display = new Surface(320, 264);
        }