示例#1
0
 public Ban(MtaBan ban)
 {
     this.ban = ban;
 }
 internal OnBanAddedEventArgs(MtaBan ban)
 {
     Ban = new Ban(ban);
 }
示例#3
0
 public static int GetUnbanTime(MtaBan theBan)
 {
     throw new NotImplementedException();
 }
示例#4
0
 public static bool RemoveBan(MtaBan theBan, MtaElement responsibleElement)
 {
     throw new NotImplementedException();
 }
示例#5
0
 public static bool SetUnbanTime(MtaBan theBan, int theTime)
 {
     throw new NotImplementedException();
 }
示例#6
0
 public static bool SetBanReason(MtaBan theBan, string theReason)
 {
     throw new NotImplementedException();
 }
示例#7
0
 public static bool SetBanNick(MtaBan theBan, string theNick)
 {
     throw new NotImplementedException();
 }
示例#8
0
 public static bool IsBan(MtaBan theBan)
 {
     throw new NotImplementedException();
 }
示例#9
0
 public static string GetBanUsername(MtaBan theBan)
 {
     throw new NotImplementedException();
 }
示例#10
0
 public static string GetBanReason(MtaBan theBan)
 {
     throw new NotImplementedException();
 }
示例#11
0
 internal OnBannedEventArgs(MtaBan ban, MtaElement responsibleBanner)
 {
     Ban = new Ban(ban);
     ResponsiblePlayer = ElementManager.Instance.GetElement <Player>(responsibleBanner);
 }