示例#1
0
 public MicRef(string name, int id)
 {
     this.MicType  = Recorder.MicType.Photon;
     this.Name     = name;
     this.PhotonId = id;
 }
示例#2
0
 public MicRef(string name)
 {
     this.MicType  = Recorder.MicType.Unity;
     this.Name     = name;
     this.PhotonId = -1;
 }
 public MicRef(Recorder.MicType _type, string _name, int _id)
 {
     this.type = _type;
     this.name = _name;
     this.id   = _id;
 }