soundvision/UnityProject/Assets/Scripts/PdConnection/PdConstant.cs
Chikashi Miyama 1267a9715a add unit test
2019-10-01 22:20:55 +02:00

14 lines
No EOL
289 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;
}
}