コード例 #1
0
ファイル: UM_Logger.cs プロジェクト: NikolasCH/WFW-CLAS
 public static void LogWarning(object message)
 {
     if (Application.platform == RuntimePlatform.Android)
     {
         AN_Logger.LogWarning(message);
     }
     else
     {
         ISN_Logger.LogWarning(message);
     }
 }