13 lines
No EOL
244 B
C#
13 lines
No EOL
244 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace _test.Singleton.MonoSingleton
|
|
{
|
|
public class TestScriptForMonoSingleton : MonoBehaviour
|
|
{
|
|
private void Start()
|
|
{
|
|
AdsManagerMono.Instance.ShowAd();
|
|
}
|
|
}
|
|
} |