Opentk/Source/Bind/IBind.cs

13 lines
227 B
C#
Raw Normal View History

2007-08-01 09:27:57 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Bind
{
2007-08-01 21:14:39 +00:00
interface IBind : ISpecReader, ISpecWriter
2007-08-01 09:27:57 +00:00
{
//ISpecReader SpecReader { get; }
void Process();
}
}