clean up multitrack object

This commit is contained in:
adelikat 2013-10-28 01:06:51 +00:00
parent bef10dc175
commit 48ffc8b9fb
1 changed files with 3 additions and 9 deletions

View File

@ -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; }
}
}