-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRack.cs
More file actions
24 lines (19 loc) · 811 Bytes
/
Rack.cs
File metadata and controls
24 lines (19 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using NITHlibrary.Nith.Module;
using NITHlibrary.Nith.Wrappers.NithWebcamWrapper;
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 NithPreprocessor_WebcamWrapper NithPreprocessor_WebcamWrapper { get; set; }
// Declare here all the other modules!
}
}