Finished first pass BeginRenderPass.

This commit is contained in:
2025-02-18 20:23:12 -05:00
parent ee194b2d69
commit f1b7f8eb29
12 changed files with 262 additions and 85 deletions

View File

@@ -0,0 +1,12 @@
#pragma once
namespace Juliet
{
struct Rectangle
{
int32 X;
int32 Y;
int32 Width;
int32 Height;
};
}