Elin Decompiled Documentation EA 23.102 Nightly
Loading...
Searching...
No Matches
Log.cs
Go to the documentation of this file.
1using UnityEngine;
2
3public static class Log
4{
5 public static string system;
6
7 public static void App(string s)
8 {
9 if (!Application.isEditor)
10 {
11 Debug.Log(s);
12 }
13 }
14}
Definition: Log.cs:4
static void App(string s)
Definition: Log.cs:7
static string system
Definition: Log.cs:5