15 lines
359 B
C#
15 lines
359 B
C#
namespace GlaxOSC;
|
|
|
|
public struct OSCEndpoint
|
|
{
|
|
public string Endpoint;
|
|
public Type Type;
|
|
public Action<string, object?, object?>? Callback;
|
|
|
|
public OSCEndpoint(string endpoint, Type type, Action<string, object?, object?>? callback)
|
|
{
|
|
this.Endpoint = endpoint;
|
|
this.Type = type;
|
|
this.Callback = callback;
|
|
}
|
|
} |