From 61a3297b662b1bd8621016c8b5b492dd37bf5675 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Tue, 30 Jun 2020 14:35:57 +0930 Subject: Functionality: begin implementing binary display --- BinaryDisplay.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 BinaryDisplay.cpp (limited to 'BinaryDisplay.cpp') 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"); +} -- cgit v1.2.3