summaryrefslogtreecommitdiff
path: root/BinaryDisplay.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'BinaryDisplay.cpp')
-rw-r--r--BinaryDisplay.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/BinaryDisplay.cpp b/BinaryDisplay.cpp
new file mode 100644
index 0000000..0e55ba3
--- /dev/null
+++ b/BinaryDisplay.cpp
@@ -0,0 +1,16 @@
+#include "BinaryDisplay.h"
+
+BinaryDisplay::BinaryDisplay(int x_, int y_, int width, int height)
+{
+ x = x_;
+ y = y_;
+ w = width;
+ h = height;
+ set_object_type(Object::BINARYDISPLAY);
+}
+
+void
+BinaryDisplay::update_state()
+{
+ puts("update binary display");
+}