aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/SystemState/UserProfile.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2019-06-16 00:35:38 +0200
committerThomas Guillemard <me@thog.eu>2019-06-16 00:35:38 +0200
commit5c1bc524092b3c5d867ce6204ac9db27b7359d3f (patch)
tree6176a128cb171a0b58b8fe12da87a346d2acf2aa /Ryujinx.HLE/HOS/SystemState/UserProfile.cs
parentd8d5f2cbe703aa2ef2d1bb9211b3056da94b0168 (diff)
Refactoring of acc:u0 (#701)
* Refactoring of acc:u0 - Move all account things to the account service - More accurate IAccountServiceForApplication - Add helper to UInt128 * FIx my engrish * FIx my engrish #2
Diffstat (limited to 'Ryujinx.HLE/HOS/SystemState/UserProfile.cs')
-rw-r--r--Ryujinx.HLE/HOS/SystemState/UserProfile.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/Ryujinx.HLE/HOS/SystemState/UserProfile.cs b/Ryujinx.HLE/HOS/SystemState/UserProfile.cs
deleted file mode 100644
index 9240389c..00000000
--- a/Ryujinx.HLE/HOS/SystemState/UserProfile.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using Ryujinx.HLE.Utilities;
-using System;
-
-namespace Ryujinx.HLE.HOS.SystemState
-{
- class UserProfile
- {
- private static readonly DateTime Epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
-
- public UInt128 Uuid { get; private set; }
-
- public string Name { get; private set; }
-
- public long LastModifiedTimestamp { get; private set; }
-
- public OpenCloseState AccountState { get; set; }
- public OpenCloseState OnlinePlayState { get; set; }
-
- public UserProfile(UInt128 uuid, string name)
- {
- Uuid = uuid;
- Name = name;
-
- LastModifiedTimestamp = 0;
-
- AccountState = OpenCloseState.Closed;
- OnlinePlayState = OpenCloseState.Closed;
-
- UpdateTimestamp();
- }
-
- private void UpdateTimestamp()
- {
- LastModifiedTimestamp = (long)(DateTime.Now - Epoch).TotalSeconds;
- }
- }
-}