15 lines
361 B
C#
15 lines
361 B
C#
namespace GlaxOSC;
|
|
|
|
public struct OSCEndpoint
|
|
{
|
|
public string Endpoint;
|
|
public Type Type;
|
|
public OSC.OnParameterChangeEventHandler? Callback;
|
|
|
|
public OSCEndpoint(string endpoint, Type type, OSC.OnParameterChangeEventHandler? callback)
|
|
{
|
|
this.Endpoint = endpoint;
|
|
this.Type = type;
|
|
this.Callback = callback;
|
|
}
|
|
} |