mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
- Added Raymath.cs binding. Raylib.cs depends on this since they both share some types. - Bindings moved into source directly. - Inital examples port alot of syntax still needs to be fixed. - Couldn't get cppsharp to work correctly so using a custom generator(WIP).
28 lines
329 B
C#
28 lines
329 B
C#
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Raylib
|
|
{
|
|
#region Raylib-cs Enums
|
|
|
|
#endregion
|
|
|
|
#region Raylib-cs Types
|
|
|
|
|
|
#endregion
|
|
|
|
public static partial class rl
|
|
{
|
|
#region Raylib-cs Variables
|
|
|
|
#endregion
|
|
|
|
#region Raylib-cs Functions
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|