From 23ae97286d8fe13740abe14325b28b1901fae41e Mon Sep 17 00:00:00 2001 From: MattNL Date: Mon, 12 Sep 2022 07:08:15 -0400 Subject: [PATCH] Added message dialog for Model Files --- PCK-Studio/MainForm.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PCK-Studio/MainForm.cs b/PCK-Studio/MainForm.cs index 03e3b112..0d628934 100644 --- a/PCK-Studio/MainForm.cs +++ b/PCK-Studio/MainForm.cs @@ -354,7 +354,8 @@ namespace PckStudio public void HandleModelsFile(PCKFile.FileData file) { - throw new NotImplementedException(); + MessageBox.Show("Models.bin support has not been implemented. You can use the Spark Editor for the time being to edit these files.", "Not implemented yet."); + //throw new NotImplementedException(); } private void selectNode(object sender, TreeViewEventArgs e)