Files

20 lines
538 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.WiseInstaller
2025-09-26 12:09:34 -04:00
{
/// <summary>
/// Wise script file
/// </summary>
2025-10-30 23:54:22 -04:00
/// <see href="https://codeberg.org/CYBERDEV/REWise/src/branch/master/src/wisescript.h"/>
2025-09-26 12:09:34 -04:00
public class ScriptFile
{
/// <summary>
/// Script header
/// </summary>
public ScriptHeader Header { get; set; } = new();
2025-09-26 12:09:34 -04:00
/// <summary>
/// States representing the state machine in order
/// </summary>
public MachineState[] States { get; set; } = [];
2025-09-26 12:09:34 -04:00
}
2025-10-30 23:54:22 -04:00
}