Ejemplo n.º 1
0
        public SystemStateMgr()
        {
            SetAudioOutputAsBuiltInSpeaker();

            Account = new AccountUtils();

            Account.AddUser(DefaultUserId, "Player");
            Account.OpenUser(DefaultUserId);
        }
Ejemplo n.º 2
0
        public SystemStateMgr()
        {
            Account = new AccountUtils();

            Account.AddUser(DefaultUserId, "Player");
            Account.OpenUser(DefaultUserId);

            // TODO: Let user specify.
            DesiredKeyboardLayout = (long)KeyboardLayout.Default;
        }
Ejemplo n.º 3
0
        public SystemStateMgr()
        {
            SetAudioOutputAsBuiltInSpeaker();

            Account = new AccountUtils();

            UserId defaultUid = new UserId("00000000000000010000000000000000");

            Account.AddUser(defaultUid, "Player");
            Account.OpenUser(defaultUid);
        }