diff --git a/Source/Bind/IBind.cs b/Source/Bind/IBind.cs index 575ad2c3..07e5215d 100644 --- a/Source/Bind/IBind.cs +++ b/Source/Bind/IBind.cs @@ -5,6 +5,8 @@ #endregion using Bind.Structures; +using System.Collections.Generic; + namespace Bind { interface IBind @@ -12,6 +14,11 @@ namespace Bind DelegateCollection Delegates { get; } EnumCollection Enums { get; } FunctionCollection Wrappers { get; } + Settings Settings { get; } + + IDictionary GLTypes { get; } + IDictionary CSTypes { get; } + void Process(); } }