soundvision/UnityProject/Assets/Scripts/PdConnection/PdConstant.cs
2019-10-01 15:08:35 +02:00

17 lines
No EOL
300 B
C#

namespace cylvester
{
enum PdMessage
{
SampleSound = 0
}
public class PdConstant
{
public static readonly int NumMaxInputChannels = 16;
public static readonly string ip = "127.0.0.1";
public static readonly int port = 54345;
}
}