15 lines
271 B
C#
15 lines
271 B
C#
|
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);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|