13 lines
193 B
C#
13 lines
193 B
C#
using UnityEngine;
|
|
|
|
namespace Darkmatter.Core
|
|
{
|
|
public static class DMUtil
|
|
{
|
|
public static void Show()
|
|
{
|
|
Debug.Log("Showin from utility");
|
|
}
|
|
}
|
|
}
|