11 lines
326 B
C#
11 lines
326 B
C#
|
|
public class AuthenticationComponent : Fantasy.Entitas.Entity
|
|
{
|
|
public Dictionary<long,Account> RegisterAccounts = new Dictionary<long,Account>();
|
|
public Dictionary<string,AccountCacheInfo> LoginAccounts = new Dictionary<string,AccountCacheInfo>();
|
|
|
|
|
|
public int Position;
|
|
public int AuthenticationCount;
|
|
|
|
} |