summaryrefslogtreecommitdiff
path: root/12key-arduino/Mode.h
diff options
context:
space:
mode:
Diffstat (limited to '12key-arduino/Mode.h')
-rw-r--r--12key-arduino/Mode.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/12key-arduino/Mode.h b/12key-arduino/Mode.h
new file mode 100644
index 0000000..83a1224
--- /dev/null
+++ b/12key-arduino/Mode.h
@@ -0,0 +1,9 @@
+#pragma once
+
+
+class Mode {
+ public:
+ static Mode **modes;
+ virtual Mode * update(unsigned int keys) = 0;
+ virtual void reset() = 0;
+};