mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-06-30 19:03:42 -04:00
Fix ExportImageToMemory and formatting issues (#245)
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user