-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRack.cs
23 lines (21 loc) · 870 Bytes
/
Rack.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using ConsoleEmulation;
using NITHlibrary.Nith.Module;
using NITHlibrary.Nith.PortDetector;
using NITHlibrary.Tools.Ports;
namespace NITHtemplate.Modules
{
/// <summary>
/// The Rack will contain a reference to all the modules and other static objects.
/// You can think of it as a scaffold where you place all the stuff you need to connect.
/// </summary>
internal static class Rack
{
public static MappingModule MappingModule { get; set; }
public static RenderingModule RenderingModule { get; set; }
public static UDPreceiver UDPreceiver { get; set; }
public static NithModule NithModule { get; set; }
public static NithUSBportDetector USBportDetector { get; set; }
public static ConsoleTextToTextBox ConsoleTextToTextBox { get; set; }
// Declare here all the other modules!
}
}