1234567891011121314151617181920212223 |
- using System.Collections;
- using UnityEngine;
- public class LoggerBridge : MonoBehaviour
- {
- // Use this for initialization
- void Start ()
- {
-
- }
-
- // Update is called once per frame
- void Update ()
- {
-
- }
- public void doLog(string msg)
- {
- Debug.Log (msg);
- }
- }
|