CTT/Server/Hotfix/Game/System/User/UserSystem.cs

15 lines
271 B
C#
Executable File

using System;
using System.Collections.Generic;
using System.Text;
namespace ET
{
public static class UserSystem
{
public static bool IsOnline(this User self)
{
return MapUnitComponent.Instance.IsOnLine(self.Id);
}
}
}