Exemplo n.º 1
0
        public Form1()
        {
            InitializeComponent();

            timer          = new Timer();
            timer.Tick    += new EventHandler(MyClock);
            timer.Interval = 200;
            timer.Start();

            player   = new Player();
            bodyList = new BodyList();

            init();
        }
Exemplo n.º 2
0
        public Form1()
        {
            InitializeComponent();

            timer = new Timer();
            timer.Tick += new EventHandler(MyClock);
            timer.Interval = 200;
            timer.Start();

            player = new Player();
            bodyList = new BodyList();

            init();
        }