KMMissionTableOfContents - Qkrisi/ktanemodkit GitHub Wiki
public class KMMissionTableOfContents : ScriptableObject
Represents a table of contents in the bomb binder.
This class is a ScriptableObject, to create an instance of it, use ScriptableObject.CreateInstance!
public string Title;
The name of the table of contents
public List<Section> Sections;
An ordered list of sections to include in the bomb binder
[Serializable]
public struct Section
Describes a list of missions along with an appropriate header.
public string Title;
The section header used in the bomb binder.
public List<string> MissionIDs;
The specified Mission IDs will be included in the section.