|
@@ -2,7 +2,9 @@ class PlatformBehavior {
|
|
|
const PlatformBehavior({this.oscTerminators});
|
|
const PlatformBehavior({this.oscTerminators});
|
|
|
|
|
|
|
|
final Set<int> oscTerminators;
|
|
final Set<int> oscTerminators;
|
|
|
|
|
+}
|
|
|
|
|
|
|
|
|
|
+class PlatformBehaviors {
|
|
|
static const unix = PlatformBehavior(oscTerminators: {0x07, 0x5c});
|
|
static const unix = PlatformBehavior(oscTerminators: {0x07, 0x5c});
|
|
|
static const windows = PlatformBehavior(oscTerminators: {0x07, 0x00});
|
|
static const windows = PlatformBehavior(oscTerminators: {0x07, 0x00});
|
|
|
}
|
|
}
|