Watch
2
0
Fork
You've already forked raylib-cs
0

Fix ExportImageToMemory and formatting issues

This commit is contained in:
Rgebee 2024-05-25 08:39:33 +01:00
commit ef95ed1b6e
2 changed files with 16 additions and 10 deletions

View file

@ -48,7 +48,10 @@ public partial struct Rectangle
public Vector2 Position
{
readonly get { return new Vector2(X,Y); }
readonly get
{
return new Vector2(X, Y);
}
set
{
X = value.X;
@ -58,7 +61,10 @@ public partial struct Rectangle
public Vector2 Size
{
readonly get { return new Vector2(Width,Height); }
readonly get
{
return new Vector2(Width, Height);
}
set
{
Width = value.X;