soundvision/UnityProject/Assets/Scripts/PdConnection/PdConstant.cs

11 lines
No EOL
342 B
C#

namespace cylvester
{
public class PdConstant
{
public static readonly int NumMaxInputChannels = 16;
public static readonly string ip = "127.0.0.1";
public static readonly int sendPort = 54345;
public static readonly int receivedPort = 56765;
public static readonly int BlockSize = 512;
}
}