Ejemplo n.º 1
0
        public Pong()
        {
            server = new PongConnection(11000);
            server.Start();

            Singleton = this;

            graphics = new GraphicsDeviceManager(this);

            Content.RootDirectory = "Content";

            state_menu    = new State_Menu();
            state_playing = new State_Playing();

            targetState = state_menu;
        }
Ejemplo n.º 2
0
 public State_Playing()
 {
     Start();
     Singleton = this;
 }