From b59b93d3943262cb66e3355e0c9ce0ea672ff196 Mon Sep 17 00:00:00 2001 From: jonas Date: Fri, 1 Feb 2019 13:38:52 +0100 Subject: Documentation --- testobject.h | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 testobject.h (limited to 'testobject.h') diff --git a/testobject.h b/testobject.h deleted file mode 100644 index 80882b7..0000000 --- a/testobject.h +++ /dev/null @@ -1,37 +0,0 @@ -#pragma once - -#include "cObject.h" -#include - -class testobject : cObject -{ - -public: - testobject() - { - setSize(10,5); - cc = 0; - - drawRectangle('#', NULL, {0,0}, {9,4}, _COL_GREEN, _COL_DEFAULT); - } - - ~testobject() - { - destruct(); - } - - virtual void onClick(sPos _pos, unsigned int _button) - { - cc++; - drawText(std::to_string(cc), {2,2}, _COL_RED); - - drawPoint('Q', _pos, true, _COL_YELLOW); - } - - virtual void onChar(unsigned char _c) - { - drawPoint(_c, {1,1},true, _COL_BLUE); - } -private: - int cc; -}; -- cgit v1.2.3