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

11 lines
342 B
C#
Raw Normal View History

2019-10-01 13:08:35 +00:00
namespace cylvester
{
public class PdConstant
{
public static readonly int NumMaxInputChannels = 16;
public static readonly string ip = "127.0.0.1";
2019-10-05 12:18:52 +00:00
public static readonly int sendPort = 54345;
public static readonly int receivedPort = 56765;
2019-10-05 16:09:24 +00:00
public static readonly int BlockSize = 512;
2019-10-01 13:08:35 +00:00
}
}