Initial Commit

This commit is contained in:
SnapixLP | Tim G.
2025-05-19 09:16:34 +02:00
commit c214be937c
39 changed files with 3710 additions and 0 deletions

11
DX86/Program.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace DX86;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Welcome to DX86!");
Console.WriteLine("Please do not run this program as itself.");
Console.WriteLine("DX86 is only a dependency for other programs.");
}
}