From 0919d8913716fb78961df8c19b804007fb20fb70 Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Tue, 10 Sep 2024 18:02:41 +0200 Subject: [PATCH] GameModelImporter - Mark 'ModelExportSettings' as sealed --- PCK-Studio/Internal/GameModelImporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Internal/GameModelImporter.cs b/PCK-Studio/Internal/GameModelImporter.cs index b6938f0a..237e7d89 100644 --- a/PCK-Studio/Internal/GameModelImporter.cs +++ b/PCK-Studio/Internal/GameModelImporter.cs @@ -39,7 +39,7 @@ namespace PckStudio.Internal { public static GameModelImporter Default { get; } = new GameModelImporter(); - public class ModelExportSettings + public sealed class ModelExportSettings { public bool CreateModelOutline { get; set; } = true; }