Add raylib-api as submodule

This commit is contained in:
Braedon Lewis 2023-03-19 14:05:29 -04:00
parent ae167926fc
commit f42f633491
3 changed files with 5 additions and 0 deletions

3
.gitmodules vendored Normal file
View file

@ -0,0 +1,3 @@
[submodule "raylib-api"]
path = raylib-api
url = https://github.com/RobLoach/raylib-api

1
raylib-api Submodule

@ -0,0 +1 @@
Subproject commit 75b79a9bb1368c483aa575205435dc49f16c58fc

View file

@ -5,6 +5,7 @@ namespace Raylib;
static
{
/// Used internally for bindings.
public const String RAYLIB_LIB = "raylib.dll";
[Import(RAYLIB_LIB), CallingConvention(.Cdecl), LinkName("InitWindow")]