2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-07-14 20:06:16 -04:00

Update project details and experimental libs

- Unsure on experimental lib at the moment. Need to test pinvoke
overhead. Might move to examples repo.
- Update README.md.
- Update Raylib-cs.csproj.
- Remove GenMeshDefault.
This commit is contained in:
2021-04-26 11:50:09 +01:00
parent 3224a58371
commit 094c4e7789
5 changed files with 93 additions and 106 deletions

View File

@ -2541,10 +2541,6 @@ namespace Raylib_cs
// Mesh generation functions
// Generate an empty mesh with vertex: position, texcoords, normals, colors
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Mesh GenMeshDefault(int vertexCount);
// Generate polygonal mesh
[DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]
public static extern Mesh GenMeshPoly(int sides, float radius);