2019-10-01 13:08:35 +00:00
|
|
|
namespace cylvester
|
|
|
|
{
|
|
|
|
enum PdMessage
|
|
|
|
{
|
2019-10-05 09:38:46 +00:00
|
|
|
Dsp = 0,
|
2019-10-05 04:15:15 +00:00
|
|
|
SampleSound = 1
|
2019-10-01 13:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|