John Aspinall / Mbed 2 deprecated SpaceGame

Dependencies:   4DGL-uLCD-SE PinDetect mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Point.cpp Source File

Point.cpp

00001 #include "Point.h"
00002 
00003 Point::Point() {
00004     x = 0;
00005     y = 0;    
00006 }
00007 
00008 Point::Point(int sx, int sy) {
00009     x = sx;
00010     y = sy;
00011 }