コード例 #1
0
ファイル: Alertify.cs プロジェクト: TomeQ2k/_Worktop
 public static void Clear()
 {
     Alert = null;
 }
コード例 #2
0
ファイル: Alertify.cs プロジェクト: TomeQ2k/_Worktop
 public static void Push(string message, AlertType type = AlertType.Info)
 {
     Alert = new Alert(type, message);
 }