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/Page.cs

21 lines
492 B
C#

using System.Collections.Generic;
namespace ADEPT.Core.Lesson;
public class Page : IPage
{
public string Title { get; set; }
public string Description { get; set; }
public ILesson Lesson { get; }
public PageContext PageContext { get; set; }
public List<IPageComponent> Components { get; set; }
public void Start()
{
throw new System.NotImplementedException();
}
public void End()
{
throw new System.NotImplementedException();
}
}