summaryrefslogtreecommitdiff
path: root/BinaryDisplay.cpp
blob: 0e55ba3f1a960fe20a669d8b449e1424b152f573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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");
}