John Aspinall / Mbed 2 deprecated SpaceGame

Dependencies:   4DGL-uLCD-SE PinDetect mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Point.h Source File

Point.h

00001 #ifndef POINT_H
00002 #define POINT_H
00003 
00004 class Point {
00005 
00006 public:
00007     Point();
00008     Point(int sx, int sy);
00009     int x;
00010     int y;
00011           
00012 };
00013 
00014 #endif