2019-10-01 13:08:35 +00:00
|
|
|
namespace cylvester
|
|
|
|
{
|
|
|
|
enum PdMessage
|
|
|
|
{
|
2019-10-05 04:15:15 +00:00
|
|
|
dsp = 0,
|
|
|
|
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";
|
|
|
|
public static readonly int port = 54345;
|
|
|
|
}
|
|
|
|
}
|