Opentk/Source/Bind/IBind.cs

18 lines
358 B
C#
Raw Normal View History

#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
2010-12-04 22:51:40 +01:00
using Bind.Structures;
namespace Bind
{
2010-12-04 22:51:40 +01:00
interface IBind
{
2010-12-04 22:51:40 +01:00
DelegateCollection Delegates { get; }
EnumCollection Enums { get; }
FunctionCollection Wrappers { get; }
void Process();
}
}