8 lines
111 B
C#
8 lines
111 B
C#
|
namespace HK
|
||
|
{
|
||
|
public interface IReference
|
||
|
{
|
||
|
void Initialize();
|
||
|
void Dispose();
|
||
|
}
|
||
|
}
|