27 lines
574 B
C#
27 lines
574 B
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 01:30:28
|
|
* Version: 1.0.4
|
|
*/
|
|
|
|
using UnityEngine;
|
|
|
|
public class ControllerLessons : MonoBehaviour
|
|
{
|
|
private static ControllerLessons instance;
|
|
public static ControllerLessons Instance
|
|
{
|
|
get
|
|
{
|
|
if(instance == null)
|
|
instance = FindObjectOfType<ControllerLessons>();
|
|
return instance;
|
|
}
|
|
}
|
|
|
|
public Lesson_7 Lesson_7;
|
|
public Lesson_3 Lesson_3;
|
|
}
|