Modified Example1

This commit is contained in:
sta
2014-03-12 20:23:37 +09:00
parent 9a22fb4235
commit f068425b10
7 changed files with 292 additions and 289 deletions

12
Example1/AudioMessage.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
namespace Example1
{
internal class AudioMessage
{
public uint user_id;
public byte ch_num;
public uint buffer_length;
public float [,] buffer_array;
}
}