コード例 #1
0
ファイル: NScriptLog.cs プロジェクト: haptear/Natasha
 public static void Warning(string title, string content)
 {
     NScriptLogWriter <NWarning> .Recoder(title, content);
 }
コード例 #2
0
ファイル: NScriptLog.cs プロジェクト: haptear/Natasha
 public static void Succeed(string title, string content)
 {
     NScriptLogWriter <NSucceed> .Recoder(title, content);
 }
コード例 #3
0
ファイル: NScriptLog.cs プロジェクト: haptear/Natasha
 public static void Error(string title, string content)
 {
     NScriptLogWriter <NError> .Recoder(title, content);
 }