Change To OpenGL

This commit is contained in:
Mueller Wayan
2025-08-15 10:44:29 +02:00
parent 1862530728
commit a36789dd7e
101 changed files with 2981 additions and 1027 deletions
@@ -0,0 +1,26 @@
using Firebird2D.Rendering;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace Firebird2D.DataypesAndInterfaces.EventArguments
{
public class FirebirdTickArgs : EventArgs
{
public double DeltaTime { get; private set; }
public FirebirdShader Shader { get; private set; }
public Matrix4x4 Projection { get; private set; }
public FirebirdTickArgs(double deltaTime, FirebirdShader shader, Matrix4x4 projection)
{
DeltaTime = deltaTime;
Shader = shader;
Projection = projection;
}
}
}