예제 #1
0
 public Ban(MtaBan ban)
 {
     this.ban = ban;
 }
예제 #2
0
 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);
 }