Ben Evans University Second Year Project. Game Called Defender.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Position.cpp Source File

Position.cpp

00001 #include "Position.h"
00002 
00003 Vector2D Position::get_pos() {
00004     Vector2D pos = {position_x_,position_y_};
00005     return pos;
00006 }