This repository has been archived on 2025-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
ADEPT/ADEPT-Godot/Core/Scripts/Lesson/LessonHandler.cs

18 lines
458 B
C#

using Cogwheel;
namespace ADEPT.Core.Lesson;
public class LessonHandler : ILessonHandler
{
public ILesson loadLesson(string lessonName)
{
var path = $"{ADEPT.Constants.DefaultLessonPath}{lessonName}{ADEPT.Constants.DefaultLessonFileExtension}";
throw new System.NotImplementedException();
}
public void saveLesson(ILesson lesson, string lessonName)
{
throw new System.NotImplementedException();
}
}