Opentk/Source/Bind/IBind.cs
2007-08-01 21:14:39 +00:00

12 lines
227 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Bind
{
interface IBind : ISpecReader, ISpecWriter
{
//ISpecReader SpecReader { get; }
void Process();
}
}