internal static void FlagCapture(C3Player who, string gametype, string whoscored, int capturedteamscore, int otherteamscore) { FlagCaptureArgs e = new FlagCaptureArgs(); e.Who = who; e.GameType = gametype; e.WhoScored = whoscored; e.CapturedTeamScore = capturedteamscore; e.OtherTeamScore = otherteamscore; if (OnFlagCapture != null) OnFlagCapture(e); }
internal static void FlagCapture(C3Player who, string gametype, string whoscored, int capturedteamscore, int otherteamscore) { FlagCaptureArgs e = new FlagCaptureArgs(); e.Who = who; e.GameType = gametype; e.WhoScored = whoscored; e.CapturedTeamScore = capturedteamscore; e.OtherTeamScore = otherteamscore; if (OnFlagCapture != null) { OnFlagCapture(e); } }