13 lines
286 B
C#
13 lines
286 B
C#
namespace ET.Server
|
|
{
|
|
[EntitySystemOf(typeof(Player))]
|
|
[FriendOf(typeof(Player))]
|
|
public static partial class PlayerSystem
|
|
{
|
|
[EntitySystem]
|
|
private static void Awake(this Player self, string a)
|
|
{
|
|
self.Account = a;
|
|
}
|
|
}
|
|
} |