-
Notifications
You must be signed in to change notification settings - Fork 64
/
BeatModel.cs
46 lines (38 loc) · 970 Bytes
/
BeatModel.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
using System;
using System.Collections;
using System.Linq;
using System.Text;
namespace ModelViewController
{
class BeatModel: IBeatModel
{
// Sequencer sequencer;
private ArrayList beatObservers = new ArrayList();
private ArrayList bpmObservers = new ArrayList();
//private int bpm = 90;
public void Initialize()
{
throw new NotImplementedException();
}
public void On()
{
throw new NotImplementedException();
}
public void Off()
{
throw new NotImplementedException();
}
public void setBpm()
{
throw new NotImplementedException();
}
public void getBpm()
{
throw new NotImplementedException();
}
#region Observer Pattern Methods
#endregion
#region Midi Generation Methods via NAudio 1.3
#endregion
}
}