ELEC2645 (2019/20) / Mbed 2 deprecated ELEC2645_Project_el18lg

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Food.h Source File

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