Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed 4DGL-uLCD-SE PinDetect
ScreenObject.h
00001 #ifndef SCREENOBJECT_H 00002 #define SCREENOBJECT_H 00003 #include <string> 00004 #include <iostream> 00005 00006 class ScreenObject 00007 { 00008 public: 00009 int xpos; 00010 int ypos; 00011 00012 virtual void draw() = 0; 00013 virtual void update() = 0; 00014 virtual bool outB() = 0; 00015 00016 private: 00017 00018 00019 }; 00020 #endif 00021 00022
Generated on Fri Jul 15 2022 00:38:40 by
1.7.2