mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 01:35:32 +00:00
13 lines
200 B
C#
13 lines
200 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Bind
|
|
{
|
|
interface IBind
|
|
{
|
|
//ISpecReader SpecReader { get; }
|
|
void Process();
|
|
}
|
|
}
|