sync project paths & namespaces

This commit is contained in:
2023-09-22 19:06:20 +02:00
parent 750a3dabe3
commit d65f812684
53 changed files with 43 additions and 470 deletions

View File

@@ -0,0 +1,35 @@
using global::System;
using global::System.ComponentModel;
using global::System.Diagnostics;
namespace SM64RomManager.ProgressUpdater.My
{
internal static partial class MyProject
{
internal partial class MyForms
{
[EditorBrowsable(EditorBrowsableState.Never)]
public Form1 m_Form1;
public Form1 Form1
{
[DebuggerHidden]
get
{
m_Form1 = MyForms.Create__Instance__(m_Form1);
return m_Form1;
}
[DebuggerHidden]
set
{
if (value == m_Form1)
return;
if (value is object)
throw new ArgumentException("Property can only be set to Nothing");
Dispose__Instance__(ref m_Form1);
}
}
}
}
}