Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,9 @@ public sealed record GeneratedScriptFile(string RelativePath, string Content);
/// Contains the results of script generation, with explicit separation between
/// gameflow script content and language file content.
/// </summary>
/// <param name="DataFileName">The data file name (without extension) used to generate the script.</param>
public sealed record ScriptGenerationResult(string DataFileName)
{
/// <summary>
/// The data file name (without extension) used to generate the script.
/// </summary>
public string DataFileName { get; init; } = DataFileName;

/// <summary>
/// Text to append to the main gameflow/script file.
/// </summary>
Expand Down