Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Connecting to bank...");
            Thread.Sleep(2000);

            BankUI bankUI = new BankUI();

            bankUI.RunTerminal();

            Console.ReadKey();
        }
Ejemplo n.º 2
0
 // Use this for initialization
 void Awake()
 {
     singleton = this;
 }
Ejemplo n.º 3
0
 private void Start()
 {
     user  = "";
     ui    = GetComponent <BankUI> ();
     users = GameObject.FindGameObjectWithTag(Tags.gameController).GetComponent <CurrentUsers> ();
 }