LoggerBridge.cs 276 B

1234567891011121314151617181920212223
  1. using System.Collections;
  2. using UnityEngine;
  3. public class LoggerBridge : MonoBehaviour
  4. {
  5. // Use this for initialization
  6. void Start ()
  7. {
  8. }
  9. // Update is called once per frame
  10. void Update ()
  11. {
  12. }
  13. public void doLog(string msg)
  14. {
  15. Debug.Log (msg);
  16. }
  17. }