mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-09-23 20:43:57 +08:00
23 lines
473 B
C#
23 lines
473 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CPF.OpenGL
|
|
{
|
|
/// <summary>
|
|
/// OpenGL导入函数名
|
|
/// </summary>
|
|
public class GlImportAttribute : Attribute
|
|
{
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// OpenGL导入函数名
|
|
/// </summary>
|
|
/// <param name="name"></param>
|
|
public GlImportAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
}
|