add project

This commit is contained in:
schedpas
2022-02-09 15:11:39 +01:00
parent 5a7b19914e
commit f12c78fa48
74 changed files with 165837 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
using global::System;
using global::System.ComponentModel;
using global::System.Diagnostics;
namespace SM64_ROM_Manager.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);
}
}
}
}
}