1
0
Glax-VRC-OSC/GlaxOSC/Parameter.cs
2024-05-13 17:57:10 +02:00

11 lines
342 B
C#

// ReSharper disable InconsistentNaming
#pragma warning disable CS0649 // Field is never assigned to, and will always have its default value
#pragma warning disable CS0169 // Field is never used
namespace GlaxOSC;
public struct Parameter
{
public string name;
public ParameterValue input, output;
}