diff --git a/TombIDE/TombIDE.Shared/SharedClasses/ScriptGenerationResult.cs b/TombIDE/TombIDE.Shared/SharedClasses/ScriptGenerationResult.cs index c44f96185..cd55d6dc9 100644 --- a/TombIDE/TombIDE.Shared/SharedClasses/ScriptGenerationResult.cs +++ b/TombIDE/TombIDE.Shared/SharedClasses/ScriptGenerationResult.cs @@ -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. /// +/// The data file name (without extension) used to generate the script. public sealed record ScriptGenerationResult(string DataFileName) { - /// - /// The data file name (without extension) used to generate the script. - /// - public string DataFileName { get; init; } = DataFileName; - /// /// Text to append to the main gameflow/script file. ///