diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index 662ee7d..42b06b7 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -468,7 +468,7 @@ public static unsafe partial class Raylib /// Unload random values sequence [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadRandomSequence(int *sequence); + public static extern void UnloadRandomSequence(int* sequence); /// Takes a screenshot of current screen (saved a .png) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -1195,23 +1195,23 @@ public static unsafe partial class Raylib /// Draw spline: Linear, minimum 2 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawSplineLinear(Vector2 *points, int pointCount, float thick, Color color); + public static extern void DrawSplineLinear(Vector2* points, int pointCount, float thick, Color color); /// Draw spline: B-Spline, minimum 4 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawSplineBasis(Vector2 *points, int pointCount, float thick, Color color); + public static extern void DrawSplineBasis(Vector2* points, int pointCount, float thick, Color color); /// Draw spline: Catmull-Rom, minimum 4 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawSplineCatmullRom(Vector2 *points, int pointCount, float thick, Color color); + public static extern void DrawSplineCatmullRom(Vector2* points, int pointCount, float thick, Color color); /// Draw spline: Quadratic Bezier, minimum 3 points (1 control point): [p1, c2, p3, c4...] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawSplineBezierQuadratic(Vector2 *points, int pointCount, float thick, Color color); + public static extern void DrawSplineBezierQuadratic(Vector2* points, int pointCount, float thick, Color color); /// Draw spline: Cubic Bezier, minimum 4 points (2 control points): [p1, c2, c3, p4, c5, c6...] [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawSplineBezierCubic(Vector2 *points, int pointCount, float thick, Color color); + public static extern void DrawSplineBezierCubic(Vector2* points, int pointCount, float thick, Color color); /// Draw spline segment: Linear, 2 points [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -1368,7 +1368,7 @@ public static unsafe partial class Raylib /// Export image to memory buffer [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern char* ExportImageToMemory(Image image, sbyte* fileType, int *fileSize); + public static extern byte* ExportImageToMemory(Image image, sbyte* fileType, int* fileSize); /// Export image as code file defining an array of bytes [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -1519,7 +1519,7 @@ public static unsafe partial class Raylib /// Rotate image by input angle in degrees (-359 to 359) [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageRotate(Image *image, int degrees); + public static extern void ImageRotate(Image* image, int degrees); /// Rotate image clockwise 90deg [DllImport(NativeLibName, CallingConvention = CallingConvention.Cdecl)] diff --git a/Raylib-cs/types/Rectangle.cs b/Raylib-cs/types/Rectangle.cs index 9f6eb21..c870bcf 100644 --- a/Raylib-cs/types/Rectangle.cs +++ b/Raylib-cs/types/Rectangle.cs @@ -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;