// 페이트 알림 internal void EventFate(GameData.Fate fate) { this.Invoke((MethodInvoker)(() => { lblInfo.Text = fate.Name; _accent_color = ColorFate; StartBlink(); })); }
private void NotifyFate(GameData.Fate fate) { string s = Localization.GetText("l-fate-occured-info", fate.Name); SendNotify(s); }