feat: added basic window, input & drawing

This commit is contained in:
2026-01-28 22:38:17 +03:00
parent 18ac6b23fd
commit 129aae563e
12 changed files with 754 additions and 96 deletions

View File

@@ -0,0 +1,8 @@
using SDL3;
namespace Engine.Integration.SDL3;
public interface ISdl3EventProcessor
{
void Process(SDL.Event sdlEvent);
}