From da3df6903a986e84488090d4d2474c88ed691865 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sat, 8 Aug 2020 09:52:38 +0100 Subject: [PATCH] Fixed typo and updated enum usage in structs. - Fixed typo in README.md. - Changed Image format to use the PixelFormat enum. - Changed Texture2D format to use the PixelFormat enum. - Changed NPatchInfo type to use the NPatchType enum. --- README.md | 2 +- Raylib-cs/Raylib.cs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 055d4d7..d53610e 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ If you need to edit Raylib-cs source then you will need to add the bindings as a 1. Download/Clone this repo -2. Add Raylib-cs/Raylib-cs.csproj to your project as an exisitng project. See the Tests projects for reference. +2. Add Raylib-cs/Raylib-cs.csproj to your project as an existing project. 3. Download the native libraries for the platforms you want to build for using the [official 3.0 release](https://github.com/raysan5/raylib/releases/tag/3.0.0). **NOTE: the MSVC version is required for Windows platforms** diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 180c0b3..9ba63ac 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -101,7 +101,7 @@ namespace Raylib_cs public int width; // Image base width public int height; // Image base height public int mipmaps; // Mipmap levels, 1 by default - public int format; // Data format (PixelFormat type) + public PixelFormat format; // Data format (PixelFormat type) } // Texture2D type @@ -113,7 +113,7 @@ namespace Raylib_cs public int width; // Texture base width public int height; // Texture base height public int mipmaps; // Mipmap levels, 1 by default - public int format; // Data format (PixelFormat type) + public PixelFormat format; // Data format (PixelFormat type) } // RenderTexture2D type, for texture rendering @@ -137,7 +137,7 @@ namespace Raylib_cs public int top; // top border offset public int right; // right border offset public int bottom; // bottom border offset - public int type; // layout of the n-patch: 3x3, 1x3 or 3x1 + public NPatchType type; // layout of the n-patch: 3x3, 1x3 or 3x1 } // Font character info