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
Food.h
00001 #ifndef FOOD_H 00002 #define FOOD_H 00003 00004 #include "mbed.h" 00005 #include "N5110.h" 00006 #include "Gamepad.h" 00007 #include "FXOS8700CQ.h" 00008 00009 class Food 00010 { 00011 00012 public: 00013 00014 Food(); 00015 ~Food(); 00016 00017 void init(); 00018 void draw(N5110 &lcd); 00019 Vector2D get_pos(); 00020 void set_pos(Vector2D fp); 00021 00022 private: 00023 int _foodx; 00024 int _foody; 00025 }; 00026 #endif 00027 00028
Generated on Mon Jul 18 2022 08:02:22 by
1.7.2