mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-09-09 03:01:41 -04:00
Organising bindings
- Seperated bidning extensions into seperate file. This will make it easier when generating them. - Added minor fixes I found while using bindings.
This commit is contained in:
@@ -1,5 +1,3 @@
|
||||
// Easings - https://github.com/raysan5/raylib/blob/master/src/easings.h
|
||||
|
||||
using System;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
@@ -7,8 +5,6 @@ namespace Raylib
|
||||
{
|
||||
public static partial class Raylib
|
||||
{
|
||||
#region Raylib-cs Functions
|
||||
|
||||
// Linear Easing functions
|
||||
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern float EaseLinearNone(float t, float b, float c, float d);
|
||||
@@ -100,8 +96,6 @@ namespace Raylib
|
||||
public static extern float EaseElasticOut(float t, float b, float c, float d);
|
||||
|
||||
[DllImport(nativeLibName,CallingConvention = CallingConvention.Cdecl)]
|
||||
public static extern float EaseElasticInOut(float t, float b, float c, float d);
|
||||
|
||||
#endregion
|
||||
public static extern float EaseElasticInOut(float t, float b, float c, float d);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user