2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00
ChrisDill 167a41f20d Bindings cleanup
- Replaced tabs with 4 spaces
- Added comments to Raylib.cs
2018-10-23 11:57:13 +01:00

34 lines
618 B
C#

/**********************************************************************************************
*
* Rlgl
* Original - https://github.com/raysan5/raylib/blob/master/src/rlgl.h
*
**********************************************************************************************/
using System;
using System.Runtime.InteropServices;
namespace Raylib
{
#region Raylib-cs Enums
#endregion
#region Raylib-cs Types
#endregion
public static partial class Raylib
{
#region Raylib-cs Variables
#endregion
#region Raylib-cs Functions
#endregion
}
}