コード例 #1
0
ファイル: UPlayer.cs プロジェクト: demiit/uEssentials
 protected bool Equals(UPlayer other)
 {
     return(Equals(this, other));
 }
コード例 #2
0
 public bool Equals(UPlayer other)
 {
     return(Equals(this, other));
 }
コード例 #3
0
ファイル: UPlayer.cs プロジェクト: nausofficial/uEssentials
 public static bool TryGet(string name, out UPlayer player)
 {
     player = From(name);
     return(player != null);
 }