Add project files.

This commit is contained in:
2026-07-28 15:11:50 -05:00
parent 634bbd3d2e
commit c8efc0f586
31 changed files with 779 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
using Raster3D.Engine;
using Raster3D.Engine.Impl;
namespace Raster3D.App
{
public class App : IRunnable
{
public static Engine.Engine engine;
public string WindowTitle { get; set; } = "Raster3D Testing Application";
public App()
{
engine = new Engine.Engine(this, new Game());
}
public void Run(string[] args)
{
engine.Run();
}
static void Main(string[] args)
{
IRunnable app = new App();
app.Run(args);
}
}
}