19 lines
513 B
C#
19 lines
513 B
C#
namespace Qrakhen.Qamp.Core.Injector;
|
|
|
|
/// <summary>
|
|
/// Class used to export custom .dll implementations as binary instruction files (*.sqi).
|
|
/// </summary>
|
|
public class Injector
|
|
{
|
|
|
|
}
|
|
|
|
public enum Scope
|
|
{
|
|
/// <summary>Within the global scope of the file that is importing this library</summary>
|
|
Global,
|
|
/// <summary>Within the scope of the module this library exports</summary>
|
|
Module,
|
|
/// <summary>An extension of the built-in <see cref="Values.Value"/> type</summary>
|
|
Extension
|
|
} |