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>
|
2025-10-31 13:59:28 -04:00
|
|
|
public ScriptHeader Header { get; set; } = new();
|
2025-09-26 12:09:34 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// States representing the state machine in order
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
public MachineState[] States { get; set; } = [];
|
2025-09-26 12:09:34 -04:00
|
|
|
}
|
2025-10-30 23:54:22 -04:00
|
|
|
}
|