Watch
2
0
Fork
You've already forked raylib-cs
0

Bindings cleanup

- Replaced tabs with 4 spaces
- Added comments to Raylib.cs
This commit is contained in:
Rgebee 2018-10-23 11:57:13 +01:00
commit 167a41f20d
5 changed files with 818 additions and 738 deletions

View file

@ -457,7 +457,7 @@ namespace Raylib
// Calculate vector length
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern float Vector3Length(Vector3 v);
public static extern float Vector3Length(Vector3 v);
// Calculate two vectors dot product
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
@ -675,7 +675,7 @@ namespace Raylib
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
public static extern Quaternion QuaternionTransform(Quaternion q, Matrix mat);
#endregion
#endregion
}
}