NLDClient-yudde/ProjectNLD/Assets/Code/Scripts/Gameplay/Debug/DebugScreenMono.cs

15 lines
218 B
C#

using System;
using UnityEngine;
public class DebugScreenMono: MonoBehaviour
{
private void OnGUI()
{
DebugScreen.Instance.DrawSafeAreaRect();
}
private void OnDestroy()
{
}
}