-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathSequencePlatform.cs
More file actions
35 lines (28 loc) · 902 Bytes
/
SequencePlatform.cs
File metadata and controls
35 lines (28 loc) · 902 Bytes
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
using GotaSoundIO.IO;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GotaSequenceLib {
/// <summary>
/// Sequence platform.
/// </summary>
public abstract class SequencePlatform {
/// <summary>
/// Command map.
/// </summary>
/// <returns>The command map.</returns>
public abstract Dictionary<SequenceCommands, byte> CommandMap();
/// <summary>
/// Extended commands.
/// </summary>
/// <returns>The extended command map.</returns>
public abstract Dictionary<SequenceCommands, byte> ExtendedCommands();
/// <summary>
/// Sequence data byte order.
/// </summary>
/// <returns>The byte order of sequence data.</returns>
public abstract ByteOrder SequenceDataByteOrder();
}
}