forked from ScriptedEvents/ScriptedEvents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathITutorial.cs
More file actions
30 lines (26 loc) · 737 Bytes
/
ITutorial.cs
File metadata and controls
30 lines (26 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace ScriptedEvents.Tutorials
{
public interface ITutorial
{
/// <summary>
/// Gets the filename (without .txt).
/// </summary>
public string FileName { get; }
/// <summary>
/// Gets the name of the tutorial.
/// </summary>
public string TutorialName { get; }
/// <summary>
/// Gets the author of the tutorial.
/// </summary>
public string Author { get; }
/// <summary>
/// Gets the tutorial's category.
/// </summary>
public string Category { get; }
/// <summary>
/// Gets the contents of the script.
/// </summary>
public string Contents { get; }
}
}