14 lines
302 B
C#
14 lines
302 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OpenTK.Graphics.ES20
|
|
{
|
|
/// <summary>
|
|
/// Provides access to OpenGL ES 2.0 methods.
|
|
/// </summary>
|
|
public static partial class ES
|
|
{
|
|
const string Library = "libGLESv2.dll";
|
|
}
|
|
}
|