Stephen Ralph / Mbed 2 deprecated Asteroids

Dependencies:   mbed 4DGL-uLCD-SE PinDetect

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SSE.h Source File

SSE.h

00001 #ifndef SSE_H
00002 #define SSE_H
00003 
00004 #include <string>
00005 #include <iostream>
00006 #include "ScreenObject.h"
00007 class SSE : public ScreenObject
00008     {
00009     public:
00010         void draw();
00011         void update();
00012         SSE();
00013         bool outB();
00014         
00015     private:
00016     double x;
00017     double y;
00018     double z;
00019      };
00020 #endif