From 279d6bea4c67f7d4a8f0c044977be4d62b63291c Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Wed, 29 Jan 2020 19:37:21 +0000 Subject: [PATCH] Updating .csproj files to help with testing continuous integration. - Removed copy of logo in Generator. - Removed older generated Raylib.cs from Generator. --- Generator/Generator.csproj | 8 +- Generator/Raylib.cs | 810 --------------------------------- Generator/raylib-cs.ico | Bin 142667 -> 0 bytes Tests/Tests.MultiTarget.csproj | 9 +- 4 files changed, 8 insertions(+), 819 deletions(-) delete mode 100644 Generator/Raylib.cs delete mode 100644 Generator/raylib-cs.ico diff --git a/Generator/Generator.csproj b/Generator/Generator.csproj index 049c41c..3d0238d 100644 --- a/Generator/Generator.csproj +++ b/Generator/Generator.csproj @@ -1,10 +1,12 @@ + Exe - netcoreapp2.1 - raylib-cs.ico + netcoreapp2.1;netcoreapp3.1 + ../Logo/raylib-cs.ico x64 + PreserveNewest @@ -13,7 +15,9 @@ PreserveNewest + + \ No newline at end of file diff --git a/Generator/Raylib.cs b/Generator/Raylib.cs deleted file mode 100644 index c04d6a9..0000000 --- a/Generator/Raylib.cs +++ /dev/null @@ -1,810 +0,0 @@ -using System; -using System.IO; -using System.Collections.Generic; -using System.Security; -using System.Runtime.InteropServices; - -namespace Raylib -{ - [SuppressUnmanagedCodeSecurity] - public static partial class Raylib - { - public const string nativeLibName = "raylib"; - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void InitWindow(int width, int height, IntPtr title); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool WindowShouldClose(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void CloseWindow(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsWindowReady(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsWindowMinimized(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsWindowResized(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsWindowHidden(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ToggleFullscreen(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnhideWindow(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void HideWindow(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowIcon(Image image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowTitle(IntPtr title); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowPosition(int x, int y); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowMonitor(int monitor); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowMinSize(int width, int height); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetWindowSize(int width, int height); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetWindowHandle(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetScreenWidth(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetScreenHeight(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMonitorCount(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMonitorWidth(int monitor); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMonitorHeight(int monitor); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMonitorPhysicalWidth(int monitor); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMonitorPhysicalHeight(int monitor); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetMonitorName(int monitor); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetClipboardText(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetClipboardText(IntPtr text); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ShowCursor(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void HideCursor(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsCursorHidden(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EnableCursor(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DisableCursor(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ClearBackground(Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginDrawing(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndDrawing(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginMode2D(Camera2D camera); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndMode2D(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginMode3D(Camera3D camera); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndMode3D(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginTextureMode(RenderTexture2D target); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndTextureMode(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Ray GetMouseRay(Vector2 mousePosition, Camera3D camera); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector2 GetWorldToScreen(Vector3 position, Camera3D camera); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Matrix GetCameraMatrix(Camera3D camera); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTargetFPS(int fps); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetFPS(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GetFrameTime(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern double GetTime(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int ColorToInt(Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector4 ColorNormalize(Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector3 ColorToHSV(Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Color ColorFromHSV(Vector3 hsv); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Color GetColor(int hexValue); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Color Fade(Color color, float alpha); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetConfigFlags(byte flags); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTraceLogLevel(int logType); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTraceLogExit(int logType); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTraceLogCallback(TraceLogCallback callback); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void TraceLog(int logType, IntPtr text, params object[] args); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void TakeScreenshot(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetRandomValue(int min, int max); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool FileExists(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsFileExtension(IntPtr fileName, IntPtr ext); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetExtension(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetFileName(IntPtr filePath); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetFileNameWithoutExt(IntPtr filePath); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetDirectoryPath(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetWorkingDirectory(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetDirectoryFiles(IntPtr dirPath, IntPtr count); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ClearDirectoryFiles(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool ChangeDirectory(IntPtr dir); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsFileDropped(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetDroppedFiles(IntPtr count); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ClearDroppedFiles(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern long GetFileModTime(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void StorageSaveValue(int position, int value); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int StorageLoadValue(int position); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void OpenURL(IntPtr url); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsKeyPressed(int key); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsKeyDown(int key); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsKeyReleased(int key); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsKeyUp(int key); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetKeyPressed(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetExitKey(int key); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadAvailable(int gamepad); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadName(int gamepad, IntPtr name); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetGamepadName(int gamepad); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadButtonPressed(int gamepad, int button); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadButtonDown(int gamepad, int button); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadButtonReleased(int gamepad, int button); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGamepadButtonUp(int gamepad, int button); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetGamepadButtonPressed(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetGamepadAxisCount(int gamepad); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GetGamepadAxisMovement(int gamepad, int axis); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMouseButtonPressed(int button); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMouseButtonDown(int button); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMouseButtonReleased(int button); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMouseButtonUp(int button); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMouseX(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMouseY(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector2 GetMousePosition(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMousePosition(int x, int y); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMouseOffset(int offsetX, int offsetY); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMouseScale(float scaleX, float scaleY); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetMouseWheelMove(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetTouchX(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetTouchY(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector2 GetTouchPosition(int index); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetGesturesEnabled(uint gestureFlags); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsGestureDetected(int gesture); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetGestureDetected(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetTouchPointsCount(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GetGestureHoldDuration(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector2 GetGestureDragVector(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GetGestureDragAngle(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector2 GetGesturePinchVector(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GetGesturePinchAngle(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetCameraMode(Camera3D camera, int mode); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateCamera(IntPtr camera); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetCameraPanControl(int panKey); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetCameraAltControl(int altKey); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetCameraSmoothZoomControl(int szKey); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetCameraMoveControls(int frontKey, int backKey, int rightKey, int leftKey, int upKey, int downKey); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawPixel(int posX, int posY, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawPixelV(Vector2 position, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawLine(int startPosX, int startPosY, int endPosX, int endPosY, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawLineV(Vector2 startPos, Vector2 endPos, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawLineEx(Vector2 startPos, Vector2 endPos, float thick, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawLineBezier(Vector2 startPos, Vector2 endPos, float thick, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircle(int centerX, int centerY, float radius, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircleSector(Vector2 center, float radius, int startAngle, int endAngle, int segments, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircleSectorLines(Vector2 center, float radius, int startAngle, int endAngle, int segments, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircleGradient(int centerX, int centerY, float radius, Color color1, Color color2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircleV(Vector2 center, float radius, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircleLines(int centerX, int centerY, float radius, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRing(Vector2 center, float innerRadius, float outerRadius, int startAngle, int endAngle, int segments, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRingLines(Vector2 center, float innerRadius, float outerRadius, int startAngle, int endAngle, int segments, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangle(int posX, int posY, int width, int height, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleV(Vector2 position, Vector2 size, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleRec(Rectangle rec, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectanglePro(Rectangle rec, Vector2 origin, float rotation, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleGradientV(int posX, int posY, int width, int height, Color color1, Color color2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleGradientH(int posX, int posY, int width, int height, Color color1, Color color2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleGradientEx(Rectangle rec, Color col1, Color col2, Color col3, Color col4); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleLines(int posX, int posY, int width, int height, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleLinesEx(Rectangle rec, int lineThick, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleRounded(Rectangle rec, float roundness, int segments, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRectangleRoundedLines(Rectangle rec, float roundness, int segments, int lineThick, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTriangle(Vector2 v1, Vector2 v2, Vector2 v3, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTriangleLines(Vector2 v1, Vector2 v2, Vector2 v3, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawPoly(Vector2 center, int sides, float radius, float rotation, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawPolyEx(IntPtr points, int numPoints, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawPolyExLines(IntPtr points, int numPoints, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShapesTexture(Texture2D texture, Rectangle source); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionRecs(Rectangle rec1, Rectangle rec2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionCircles(Vector2 center1, float radius1, Vector2 center2, float radius2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionCircleRec(Vector2 center, float radius, Rectangle rec); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionPointRec(Vector2 point, Rectangle rec); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionPointCircle(Vector2 point, Vector2 center, float radius); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionPointTriangle(Vector2 point, Vector2 p1, Vector2 p2, Vector2 p3); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image LoadImage(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image LoadImageEx(IntPtr pixels, int width, int height); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image LoadImagePro(IntPtr data, int width, int height, int format); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image LoadImageRaw(IntPtr fileName, int width, int height, int format, int headerSize); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ExportImage(Image image, IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ExportImageAsCode(Image image, IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D LoadTexture(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D LoadTextureFromImage(Image image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D LoadTextureCubemap(Image image, int layoutType); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern RenderTexture2D LoadRenderTexture(int width, int height); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadImage(Image image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadTexture(Texture2D texture); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadRenderTexture(RenderTexture2D target); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetImageData(Image image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetImageDataNormalized(Image image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetPixelDataSize(int width, int height, int format); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GetTextureData(Texture2D texture); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GetScreenData(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateTexture(Texture2D texture, IntPtr pixels); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image ImageCopy(Image image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageToPOT(IntPtr image, Color fillColor); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageFormat(IntPtr image, int newFormat); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageAlphaMask(IntPtr image, Image alphaMask); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageAlphaClear(IntPtr image, Color color, float threshold); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageAlphaCrop(IntPtr image, float threshold); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageAlphaPremultiply(IntPtr image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageCrop(IntPtr image, Rectangle crop); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageResize(IntPtr image, int newWidth, int newHeight); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageResizeNN(IntPtr image, int newWidth, int newHeight); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageResizeCanvas(IntPtr image, int newWidth, int newHeight, int offsetX, int offsetY, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageMipmaps(IntPtr image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageDither(IntPtr image, int rBpp, int gBpp, int bBpp, int aBpp); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr ImageExtractPalette(Image image, int maxPaletteSize, IntPtr extractCount); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image ImageText(IntPtr text, int fontSize, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image ImageTextEx(Font font, IntPtr text, float fontSize, float spacing, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageDraw(IntPtr dst, Image src, Rectangle srcRec, Rectangle dstRec); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageDrawRectangle(IntPtr dst, Rectangle rec, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageDrawRectangleLines(IntPtr dst, Rectangle rec, int thick, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageDrawText(IntPtr dst, Vector2 position, IntPtr text, int fontSize, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageDrawTextEx(IntPtr dst, Vector2 position, Font font, IntPtr text, float fontSize, float spacing, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageFlipVertical(IntPtr image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageFlipHorizontal(IntPtr image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageRotateCW(IntPtr image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageRotateCCW(IntPtr image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageColorTint(IntPtr image, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageColorInvert(IntPtr image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageColorGrayscale(IntPtr image); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageColorContrast(IntPtr image, float contrast); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageColorBrightness(IntPtr image, int brightness); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ImageColorReplace(IntPtr image, Color color, Color replace); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImageColor(int width, int height, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImageGradientV(int width, int height, Color top, Color bottom); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImageGradientH(int width, int height, Color left, Color right); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImageGradientRadial(int width, int height, float density, Color inner, Color outer); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImageChecked(int width, int height, int checksX, int checksY, Color col1, Color col2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImageWhiteNoise(int width, int height, float factor); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImagePerlinNoise(int width, int height, int offsetX, int offsetY, float scale); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImageCellular(int width, int height, int tileSize); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void GenTextureMipmaps(IntPtr texture); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTextureFilter(Texture2D texture, int filterMode); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetTextureWrap(Texture2D texture, int wrapMode); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTexture(Texture2D texture, int posX, int posY, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTextureV(Texture2D texture, Vector2 position, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTextureEx(Texture2D texture, Vector2 position, float rotation, float scale, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTextureRec(Texture2D texture, Rectangle sourceRec, Vector2 position, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTextureQuad(Texture2D texture, Vector2 tiling, Vector2 offset, Rectangle quad, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTexturePro(Texture2D texture, Rectangle sourceRec, Rectangle destRec, Vector2 origin, float rotation, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTextureNPatch(Texture2D texture, NPatchInfo nPatchInfo, Rectangle destRec, Vector2 origin, float rotation, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Font GetFontDefault(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Font LoadFont(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Font LoadFontEx(IntPtr fileName, int fontSize, IntPtr fontChars, int charsCount); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Font LoadFontFromImage(Image image, Color key, int firstChar); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr LoadFontData(IntPtr fileName, int fontSize, IntPtr fontChars, int charsCount, int type); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Image GenImageFontAtlas(IntPtr chars, int charsCount, int fontSize, int padding, int packMethod); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadFont(Font font); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawFPS(int posX, int posY); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawText(IntPtr text, int posX, int posY, int fontSize, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTextEx(Font font, IntPtr text, Vector2 position, float fontSize, float spacing, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTextRec(Font font, IntPtr text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawTextRecEx(Font font, IntPtr text, Rectangle rec, float fontSize, float spacing, bool wordWrap, Color tint, int selectStart, int selectLength, Color selectText, Color selectBack); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int MeasureText(IntPtr text, int fontSize); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Vector2 MeasureTextEx(Font font, IntPtr text, float fontSize, float spacing); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetGlyphIndex(Font font, int character); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool TextIsEqual(IntPtr text1, IntPtr text2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern unsigned int TextLength(IntPtr text); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextFormat(IntPtr text, params object[] args); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextSubtext(IntPtr text, int position, int length); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextReplace(IntPtr text, IntPtr replace, IntPtr by); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextInsert(IntPtr text, IntPtr insert, int position); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextJoin(IntPtr textList, int count, IntPtr delimiter); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextSplit(IntPtr text, char delimiter, IntPtr count); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void TextAppend(IntPtr text, IntPtr append, IntPtr position); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int TextFindIndex(IntPtr text, IntPtr find); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextToUpper(IntPtr text); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextToLower(IntPtr text); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr TextToPascal(IntPtr text); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int TextToInteger(IntPtr text); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawLine3D(Vector3 startPos, Vector3 endPos, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCircle3D(Vector3 center, float radius, Vector3 rotationAxis, float rotationAngle, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCube(Vector3 position, float width, float height, float length, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCubeV(Vector3 position, Vector3 size, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCubeWires(Vector3 position, float width, float height, float length, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCubeWiresV(Vector3 position, Vector3 size, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCubeTexture(Texture2D texture, Vector3 position, float width, float height, float length, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawSphere(Vector3 centerPos, float radius, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawSphereEx(Vector3 centerPos, float radius, int rings, int slices, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawSphereWires(Vector3 centerPos, float radius, int rings, int slices, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCylinder(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawCylinderWires(Vector3 position, float radiusTop, float radiusBottom, float height, int slices, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawPlane(Vector3 centerPos, Vector2 size, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawRay(Ray ray, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawGrid(int slices, float spacing); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawGizmo(Vector3 position); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Model LoadModel(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Model LoadModelFromMesh(Mesh mesh); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadModel(Model model); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr LoadMeshes(IntPtr fileName, IntPtr meshCount); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ExportMesh(Mesh mesh, IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadMesh(IntPtr mesh); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr LoadMaterials(IntPtr fileName, IntPtr materialCount); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Material LoadMaterialDefault(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadMaterial(Material material); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMaterialTexture(IntPtr material, int mapType, Texture2D texture); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetModelMeshMaterial(IntPtr model, int meshId, int materialId); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr LoadModelAnimations(IntPtr fileName, IntPtr animsCount); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateModelAnimation(Model model, ModelAnimation anim, int frame); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadModelAnimation(ModelAnimation anim); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsModelAnimationValid(Model model, ModelAnimation anim); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshPoly(int sides, float radius); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshPlane(float width, float length, int resX, int resZ); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshCube(float width, float height, float length); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshSphere(float radius, int rings, int slices); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshHemiSphere(float radius, int rings, int slices); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshCylinder(float radius, float height, int slices); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshTorus(float radius, float size, int radSeg, int sides); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshKnot(float radius, float size, int radSeg, int sides); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshHeightmap(Image heightmap, Vector3 size); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern BoundingBox MeshBoundingBox(Mesh mesh); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void MeshTangents(IntPtr mesh); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void MeshBinormals(IntPtr mesh); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawModel(Model model, Vector3 position, float scale, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawModelEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawModelWires(Model model, Vector3 position, float scale, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawModelWiresEx(Model model, Vector3 position, Vector3 rotationAxis, float rotationAngle, Vector3 scale, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawBoundingBox(BoundingBox box, Color color); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawBillboard(Camera3D camera, Texture2D texture, Vector3 center, float size, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void DrawBillboardRec(Camera3D camera, Texture2D texture, Rectangle sourceRec, Vector3 center, float size, Color tint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionSpheres(Vector3 centerA, float radiusA, Vector3 centerB, float radiusB); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionBoxes(BoundingBox box1, BoundingBox box2); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionBoxSphere(BoundingBox box, Vector3 centerSphere, float radiusSphere); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionRaySphere(Ray ray, Vector3 spherePosition, float sphereRadius); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionRaySphereEx(Ray ray, Vector3 spherePosition, float sphereRadius, IntPtr collisionPoint); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool CheckCollisionRayBox(Ray ray, BoundingBox box); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern RayHitInfo GetCollisionRayModel(Ray ray, IntPtr model); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern RayHitInfo GetCollisionRayTriangle(Ray ray, Vector3 p1, Vector3 p2, Vector3 p3); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern RayHitInfo GetCollisionRayGround(Ray ray, float groundHeight); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr LoadText(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Shader LoadShader(IntPtr vsFileName, IntPtr fsFileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Shader LoadShaderCode(IntPtr vsCode, IntPtr fsCode); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadShader(Shader shader); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Shader GetShaderDefault(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GetTextureDefault(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetShaderLocation(Shader shader, IntPtr uniformName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValue(Shader shader, int uniformLoc, IntPtr value, int uniformType); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValueV(Shader shader, int uniformLoc, IntPtr value, int uniformType, int count); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValueMatrix(Shader shader, int uniformLoc, Matrix mat); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetShaderValueTexture(Shader shader, int uniformLoc, Texture2D texture); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMatrixProjection(Matrix proj); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMatrixModelview(Matrix view); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Matrix GetMatrixModelview(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GenTextureCubemap(Shader shader, Texture2D skyHDR, int size); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GenTextureIrradiance(Shader shader, Texture2D cubemap, int size); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GenTexturePrefilter(Shader shader, Texture2D cubemap, int size); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Texture2D GenTextureBRDF(Shader shader, int size); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginShaderMode(Shader shader); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndShaderMode(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginBlendMode(int mode); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndBlendMode(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginScissorMode(int x, int y, int width, int height); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndScissorMode(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void InitVrSimulator(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void CloseVrSimulator(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateVrTracking(IntPtr camera); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetVrConfiguration(VrDeviceInfo info, Shader distortion); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsVrSimulatorReady(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ToggleVrMode(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void BeginVrDrawing(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void EndVrDrawing(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void InitAudioDevice(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void CloseAudioDevice(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsAudioDeviceReady(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMasterVolume(float volume); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Wave LoadWave(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Wave LoadWaveEx(IntPtr data, int sampleCount, int sampleRate, int sampleSize, int channels); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Sound LoadSound(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Sound LoadSoundFromWave(Wave wave); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateSound(Sound sound, IntPtr data, int samplesCount); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadWave(Wave wave); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadSound(Sound sound); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ExportWave(Wave wave, IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ExportWaveAsCode(Wave wave, IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void PlaySound(Sound sound); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void PauseSound(Sound sound); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ResumeSound(Sound sound); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void StopSound(Sound sound); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsSoundPlaying(Sound sound); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetSoundVolume(Sound sound, float volume); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetSoundPitch(Sound sound, float pitch); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void WaveFormat(IntPtr wave, int sampleRate, int sampleSize, int channels); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Wave WaveCopy(Wave wave); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void WaveCrop(IntPtr wave, int initSample, int finalSample); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr GetWaveData(Wave wave); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern Music LoadMusicStream(IntPtr fileName); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UnloadMusicStream(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void PlayMusicStream(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateMusicStream(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void StopMusicStream(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void PauseMusicStream(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ResumeMusicStream(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsMusicPlaying(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMusicVolume(Music music, float volume); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMusicPitch(Music music, float pitch); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetMusicLoopCount(Music music, int count); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GetMusicTimeLength(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern float GetMusicTimePlayed(Music music); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern AudioStream InitAudioStream(uint sampleRate, uint sampleSize, uint channels); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void UpdateAudioStream(AudioStream stream, IntPtr data, int samplesCount); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void CloseAudioStream(AudioStream stream); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsAudioBufferProcessed(AudioStream stream); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void PlayAudioStream(AudioStream stream); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void PauseAudioStream(AudioStream stream); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void ResumeAudioStream(AudioStream stream); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern bool IsAudioStreamPlaying(AudioStream stream); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void StopAudioStream(AudioStream stream); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetAudioStreamVolume(AudioStream stream, float volume); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void SetAudioStreamPitch(AudioStream stream, float pitch); - } -} \ No newline at end of file diff --git a/Generator/raylib-cs.ico b/Generator/raylib-cs.ico deleted file mode 100644 index 296d5dd59c742944d814a44152a05b1d2a8018f1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142667 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 diff --git a/Tests/Tests.MultiTarget.csproj b/Tests/Tests.MultiTarget.csproj index 6e1bbae..e50767f 100644 --- a/Tests/Tests.MultiTarget.csproj +++ b/Tests/Tests.MultiTarget.csproj @@ -1,7 +1,8 @@ + Exe - net40;net45;net46;net461;net462;netcoreapp2.1;netcoreapp3.1 + net45;net46;net461;net462;netcoreapp2.1;netcoreapp3.1 ../Logo/raylib-cs.ico AnyCPU;x64;x86 true @@ -11,10 +12,4 @@ - - \ No newline at end of file