clean up multitrack object
This commit is contained in:
parent
bef10dc175
commit
48ffc8b9fb
|
@ -2,14 +2,8 @@
|
|||
{
|
||||
public class MultitrackRecording
|
||||
{
|
||||
public bool IsActive;
|
||||
public int CurrentPlayer;
|
||||
public bool RecordAll;
|
||||
public MultitrackRecording()
|
||||
{
|
||||
IsActive = false;
|
||||
CurrentPlayer = 0;
|
||||
RecordAll = false;
|
||||
}
|
||||
public bool IsActive { get; set; }
|
||||
public int CurrentPlayer { get; set; }
|
||||
public bool RecordAll { get; set; }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue