Exemplo n.º 1
0
        public override void ClientTerminate()
        {
            Interface = null;

            UI.Deactivate();
            UI = null;
        }
Exemplo n.º 2
0
 internal override void ClientInitialize()
 {
     userInterface = new UserInterface();
     backgroundsUI = new BackgroundsUI(userInterface);
     backgroundsUI.Activate();
     userInterface.SetState(backgroundsUI);
 }
Exemplo n.º 3
0
        public override void ClientInitialize()
        {
            Interface = new UserInterface();

            UI = new BackgroundsUI(Interface);
            UI.Activate();

            Interface.SetState(UI);
        }