2025-05-12 01:29:30 +03:00
|
|
|
|
/*
|
|
|
|
|
* Author: Nikolay Dvurechensky
|
|
|
|
|
* Site: https://www.dvurechensky.pro/
|
|
|
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
|
|
|
* Last Updated: 12 мая 2025 01:23:16
|
|
|
|
|
* Version: 1.0.3
|
|
|
|
|
*/
|
|
|
|
|
|
2024-10-05 08:54:55 +03:00
|
|
|
|
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;
|
|
|
|
|
}
|