-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ported the launcher to C# with the help of Code Converter, GitHub Copilot, and copious debugging. likely to have issues, definitely will not be good code, but a large chunk of the worst stuff is now being replaced.
- Loading branch information
Showing
57 changed files
with
15,764 additions
and
11,986 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<component name="ProjectRunConfigurationManager"> | ||
<configuration default="false" name="Publish" type="DotNetFolderPublish" factoryName="Publish to folder"> | ||
<riderPublish configuration="Release" platform="x64" produce_single_file="true" ready_to_run="true" runtime="win-x64" target_folder="$PROJECT_DIR$/VBLauncher/bin/Release" target_framework="net8.0-windows10.0.17763.0" uuid_high="4903499188036191289" uuid_low="-4847728403474763751" /> | ||
<riderPublish configuration="Release" platform="x64" produce_single_file="true" ready_to_run="true" runtime="win-x64" target_folder="$PROJECT_DIR$/VBLauncher/bin/Release" target_framework="net8.0-windows10.0.17763.0" uuid_high="-709251091559609400" uuid_low="4531081705452700857" /> | ||
<method v="2" /> | ||
</configuration> | ||
</component> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System.Windows.Forms; | ||
|
||
namespace VBLauncher | ||
{ | ||
public partial class EEN2Editor : UserControl | ||
{ | ||
|
||
// init function | ||
public EEN2Editor() | ||
{ | ||
BackColor = AltUI.Config.ThemeProvider.BackgroundColour; | ||
InitializeComponent(); | ||
} | ||
|
||
} | ||
} |
Oops, something went wrong.