1
0
Glax-VRC-OSC-lib/GlaxOSC/OSCEndpoint.cs

15 lines
361 B
C#
Raw Normal View History

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;
}
}