Ryan Scott / menuSystemMbedBroken

Dependencies:   ANSITermMenuSystem

Fork of menuSystemMbed by Ryan Scott

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers XYPoint.cpp Source File

XYPoint.cpp

00001 //
00002 //  XYPoint.cpp
00003 //  menuSystem
00004 //
00005 //  Created by BradDSmith on 2013-02-26.
00006 //  Copyright (c) 2013 BradDSmith. All rights reserved.
00007 //
00008 
00009 #include "XYPoint.h"
00010 
00011 XYPoint::XYPoint()
00012 {
00013     X = 0;
00014     Y = 0;
00015 }
00016 
00017 XYPoint::XYPoint( int x, int y)
00018 {
00019     X = x;
00020     Y = y;
00021     
00022 }
00023 
00024 
00025 
00026